Update V8 to version 4.6.62.
[chromium-blink-merge.git] / components / suggestions / image_encoder_ios.mm
blobffac9a2a4599d73570551d1914b1aa56823bc120
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 #include "components/suggestions/image_encoder.h"
7 #import <UIKit/UIKit.h>
9 #include "base/mac/scoped_cftyperef.h"
10 #include "skia/ext/skia_utils_ios.h"
12 namespace suggestions {
14 SkBitmap* DecodeJPEGToSkBitmap(const void* encoded_data, size_t size) {
15   NSData* data = [NSData dataWithBytes:encoded_data length:size];
16   UIImage* image = [UIImage imageWithData:data scale:1.0];
17   return new SkBitmap(gfx::CGImageToSkBitmap(image.CGImage, [image size], YES));
20 bool EncodeSkBitmapToJPEG(const SkBitmap& bitmap,
21                           std::vector<unsigned char>* dest) {
22   base::ScopedCFTypeRef<CGColorSpaceRef> color_space(
23       CGColorSpaceCreateDeviceRGB());
24   UIImage* image =
25       gfx::SkBitmapToUIImageWithColorSpace(bitmap, 1 /* scale */, color_space);
26   NSData* data = UIImageJPEGRepresentation(image, 1.0);
27   const char* bytes = reinterpret_cast<const char*>([data bytes]);
28   dest->assign(bytes, bytes + [data length]);
29   return true;
32 }  // namespace suggestions