summaryrefslogtreecommitdiff
path: root/chromium/components/suggestions/image_encoder.h
blob: d0aa71d5f1c571fc0b47cbbf84a8792e7d5b9452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_
#define COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_

#include <stddef.h>
#include <vector>

class SkBitmap;

namespace suggestions {

// From encoded bytes to SkBitmap. It's the caller's responsibility to delete
// the bitmap.
SkBitmap* DecodeJPEGToSkBitmap(const void* encoded_data, size_t size);

inline SkBitmap* DecodeJPEGToSkBitmap(
    const std::vector<unsigned char>& encoded_data) {
  return DecodeJPEGToSkBitmap(&encoded_data[0], encoded_data.size());
}

// From SkBitmap to a vector of JPEG-encoded bytes, |dst|.
bool EncodeSkBitmapToJPEG(const SkBitmap& bitmap,
                          std::vector<unsigned char>* dest);

}  // namespace suggestions

#endif  // COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_