1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_
6 #define COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_
13 namespace suggestions
{
15 // From encoded bytes to SkBitmap. It's the caller's responsibility to delete
17 SkBitmap
* DecodeJPEGToSkBitmap(const void* encoded_data
, size_t size
);
19 inline SkBitmap
* DecodeJPEGToSkBitmap(
20 const std::vector
<unsigned char>& encoded_data
) {
21 return DecodeJPEGToSkBitmap(&encoded_data
[0], encoded_data
.size());
24 // From SkBitmap to a vector of JPEG-encoded bytes, |dst|.
25 bool EncodeSkBitmapToJPEG(const SkBitmap
& bitmap
,
26 std::vector
<unsigned char>* dest
);
28 } // namespace suggestions
30 #endif // COMPONENTS_SUGGESTIONS_IMAGE_ENCODER_H_