2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-05-30 23:05:24 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/common/native_mate_converters/image_converter.h"
|
|
|
|
|
2015-02-11 16:03:19 +08:00
|
|
|
#include "atom/common/api/atom_api_native_image.h"
|
2014-05-30 23:05:24 +08:00
|
|
|
#include "atom/common/native_mate_converters/file_path_converter.h"
|
|
|
|
#include "ui/gfx/image/image_skia.h"
|
2015-01-02 18:34:13 -08:00
|
|
|
|
2014-05-30 23:05:24 +08:00
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
bool Converter<gfx::ImageSkia>::FromV8(v8::Isolate* isolate,
|
2015-05-22 19:11:22 +08:00
|
|
|
v8::Local<v8::Value> val,
|
2014-05-30 23:05:24 +08:00
|
|
|
gfx::ImageSkia* out) {
|
2015-02-11 19:22:41 +08:00
|
|
|
gfx::Image image;
|
|
|
|
if (!ConvertFromV8(isolate, val, &image))
|
2015-01-02 18:10:29 -08:00
|
|
|
return false;
|
2014-05-30 23:05:24 +08:00
|
|
|
|
2015-02-11 19:22:41 +08:00
|
|
|
*out = image.AsImageSkia();
|
|
|
|
return true;
|
2014-05-30 23:05:24 +08:00
|
|
|
}
|
|
|
|
|
2015-01-02 17:13:26 -08:00
|
|
|
bool Converter<gfx::Image>::FromV8(v8::Isolate* isolate,
|
2015-05-22 19:11:22 +08:00
|
|
|
v8::Local<v8::Value> val,
|
2015-01-02 17:13:26 -08:00
|
|
|
gfx::Image* out) {
|
2015-02-11 19:22:41 +08:00
|
|
|
if (val->IsNull())
|
|
|
|
return true;
|
2015-01-02 17:13:26 -08:00
|
|
|
|
2015-02-11 19:22:41 +08:00
|
|
|
Handle<atom::api::NativeImage> native_image;
|
2016-05-20 16:14:40 +09:00
|
|
|
if (!ConvertFromV8(isolate, val, &native_image))
|
|
|
|
return false;
|
2015-02-11 19:22:41 +08:00
|
|
|
|
|
|
|
*out = native_image->image();
|
2015-01-02 17:13:26 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-22 19:11:22 +08:00
|
|
|
v8::Local<v8::Value> Converter<gfx::Image>::ToV8(v8::Isolate* isolate,
|
2015-02-11 14:31:51 +08:00
|
|
|
const gfx::Image& val) {
|
2015-02-11 16:03:19 +08:00
|
|
|
return ConvertToV8(isolate, atom::api::NativeImage::Create(isolate, val));
|
2015-02-11 14:31:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mate
|