0fe6767d6b
* refactor: convert Menu and globalShortcut to gin * refactor: convert api::Cookies to gin * refactor: convert View and WebContentsView to gin * refactor: convert WebContents related classes to gin * refactor: convert powerMonitor to gin * refactor: prepare for header change * refactor: remove last uses of mate::EventEmitter * refactor: remove mate::EventEmitter * refactor: move trackable_object to gin_helper * fix: custom converter should not use Handle * fix: no more need to check if icon is empty It was a bug that the Handle<NativeImage> can be non-empty when the image file does not exist. The bug was caused by the converter code writing out the image even when the convertion fails. The bug was work-arounded by adding an additional check, but since the original bug had been fixed, the additional check is no longer needed. * fix: should always set frameId even when callback is null * fix: do not mix gin/mate handles for NativeImage
585 lines
19 KiB
C++
585 lines
19 KiB
C++
// Copyright (c) 2015 GitHub, Inc.
|
||
// Use of this source code is governed by the MIT license that can be
|
||
// found in the LICENSE file.
|
||
|
||
#include "shell/common/api/atom_api_native_image.h"
|
||
|
||
#include <memory>
|
||
#include <string>
|
||
#include <utility>
|
||
#include <vector>
|
||
|
||
#include "base/files/file_util.h"
|
||
#include "base/strings/pattern.h"
|
||
#include "base/strings/string_util.h"
|
||
#include "base/threading/thread_restrictions.h"
|
||
#include "net/base/data_url.h"
|
||
#include "shell/common/asar/asar_util.h"
|
||
#include "shell/common/gin_converters/file_path_converter.h"
|
||
#include "shell/common/gin_converters/gfx_converter.h"
|
||
#include "shell/common/gin_converters/gurl_converter.h"
|
||
#include "shell/common/gin_converters/value_converter_gin_adapter.h"
|
||
#include "shell/common/gin_helper/dictionary.h"
|
||
#include "shell/common/gin_helper/object_template_builder.h"
|
||
#include "shell/common/node_includes.h"
|
||
#include "shell/common/skia_util.h"
|
||
#include "third_party/skia/include/core/SkBitmap.h"
|
||
#include "third_party/skia/include/core/SkImageInfo.h"
|
||
#include "third_party/skia/include/core/SkPixelRef.h"
|
||
#include "ui/base/layout.h"
|
||
#include "ui/base/webui/web_ui_util.h"
|
||
#include "ui/gfx/codec/jpeg_codec.h"
|
||
#include "ui/gfx/codec/png_codec.h"
|
||
#include "ui/gfx/geometry/size.h"
|
||
#include "ui/gfx/image/image_skia.h"
|
||
#include "ui/gfx/image/image_skia_operations.h"
|
||
#include "ui/gfx/image/image_util.h"
|
||
|
||
#if defined(OS_WIN)
|
||
#include "base/win/scoped_gdi_object.h"
|
||
#include "shell/common/asar/archive.h"
|
||
#include "ui/gfx/icon_util.h"
|
||
#endif
|
||
|
||
namespace electron {
|
||
|
||
namespace api {
|
||
|
||
namespace {
|
||
|
||
// Get the scale factor from options object at the first argument
|
||
float GetScaleFactorFromOptions(gin::Arguments* args) {
|
||
float scale_factor = 1.0f;
|
||
gin_helper::Dictionary options;
|
||
if (args->GetNext(&options))
|
||
options.Get("scaleFactor", &scale_factor);
|
||
return scale_factor;
|
||
}
|
||
|
||
base::FilePath NormalizePath(const base::FilePath& path) {
|
||
if (!path.ReferencesParent()) {
|
||
return path;
|
||
}
|
||
|
||
base::FilePath absolute_path = MakeAbsoluteFilePath(path);
|
||
// MakeAbsoluteFilePath returns an empty path on failures so use original path
|
||
if (absolute_path.empty()) {
|
||
return path;
|
||
} else {
|
||
return absolute_path;
|
||
}
|
||
}
|
||
|
||
#if defined(OS_MACOSX)
|
||
bool IsTemplateFilename(const base::FilePath& path) {
|
||
return (base::MatchPattern(path.value(), "*Template.*") ||
|
||
base::MatchPattern(path.value(), "*Template@*x.*"));
|
||
}
|
||
#endif
|
||
|
||
#if defined(OS_WIN)
|
||
base::win::ScopedHICON ReadICOFromPath(int size, const base::FilePath& path) {
|
||
// If file is in asar archive, we extract it to a temp file so LoadImage can
|
||
// load it.
|
||
base::FilePath asar_path, relative_path;
|
||
base::FilePath image_path(path);
|
||
if (asar::GetAsarArchivePath(image_path, &asar_path, &relative_path)) {
|
||
std::shared_ptr<asar::Archive> archive =
|
||
asar::GetOrCreateAsarArchive(asar_path);
|
||
if (archive)
|
||
archive->CopyFileOut(relative_path, &image_path);
|
||
}
|
||
|
||
// Load the icon from file.
|
||
return base::win::ScopedHICON(
|
||
static_cast<HICON>(LoadImage(NULL, image_path.value().c_str(), IMAGE_ICON,
|
||
size, size, LR_LOADFROMFILE)));
|
||
}
|
||
#endif
|
||
|
||
void Noop(char*, void*) {}
|
||
|
||
} // namespace
|
||
|
||
NativeImage::NativeImage(v8::Isolate* isolate, const gfx::Image& image)
|
||
: image_(image) {
|
||
Init(isolate);
|
||
if (image_.HasRepresentation(gfx::Image::kImageRepSkia)) {
|
||
isolate->AdjustAmountOfExternalAllocatedMemory(
|
||
image_.ToImageSkia()->bitmap()->computeByteSize());
|
||
}
|
||
}
|
||
|
||
#if defined(OS_WIN)
|
||
NativeImage::NativeImage(v8::Isolate* isolate, const base::FilePath& hicon_path)
|
||
: hicon_path_(hicon_path) {
|
||
// Use the 256x256 icon as fallback icon.
|
||
gfx::ImageSkia image_skia;
|
||
electron::util::ReadImageSkiaFromICO(&image_skia, GetHICON(256));
|
||
image_ = gfx::Image(image_skia);
|
||
Init(isolate);
|
||
if (image_.HasRepresentation(gfx::Image::kImageRepSkia)) {
|
||
isolate->AdjustAmountOfExternalAllocatedMemory(
|
||
image_.ToImageSkia()->bitmap()->computeByteSize());
|
||
}
|
||
}
|
||
#endif
|
||
|
||
NativeImage::~NativeImage() {
|
||
if (image_.HasRepresentation(gfx::Image::kImageRepSkia)) {
|
||
isolate()->AdjustAmountOfExternalAllocatedMemory(-static_cast<int64_t>(
|
||
image_.ToImageSkia()->bitmap()->computeByteSize()));
|
||
}
|
||
}
|
||
|
||
#if defined(OS_WIN)
|
||
HICON NativeImage::GetHICON(int size) {
|
||
auto iter = hicons_.find(size);
|
||
if (iter != hicons_.end())
|
||
return iter->second.get();
|
||
|
||
// First try loading the icon with specified size.
|
||
if (!hicon_path_.empty()) {
|
||
hicons_[size] = ReadICOFromPath(size, hicon_path_);
|
||
return hicons_[size].get();
|
||
}
|
||
|
||
// Then convert the image to ICO.
|
||
if (image_.IsEmpty())
|
||
return NULL;
|
||
hicons_[size] = IconUtil::CreateHICONFromSkBitmap(image_.AsBitmap());
|
||
return hicons_[size].get();
|
||
}
|
||
#endif
|
||
|
||
v8::Local<v8::Value> NativeImage::ToPNG(gin::Arguments* args) {
|
||
float scale_factor = GetScaleFactorFromOptions(args);
|
||
|
||
if (scale_factor == 1.0f) {
|
||
// Use raw 1x PNG bytes when available
|
||
scoped_refptr<base::RefCountedMemory> png = image_.As1xPNGBytes();
|
||
if (png->size() > 0) {
|
||
const char* data = reinterpret_cast<const char*>(png->front());
|
||
size_t size = png->size();
|
||
return node::Buffer::Copy(args->isolate(), data, size).ToLocalChecked();
|
||
}
|
||
}
|
||
|
||
const SkBitmap bitmap =
|
||
image_.AsImageSkia().GetRepresentation(scale_factor).GetBitmap();
|
||
std::vector<unsigned char> encoded;
|
||
gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, false, &encoded);
|
||
const char* data = reinterpret_cast<char*>(encoded.data());
|
||
size_t size = encoded.size();
|
||
return node::Buffer::Copy(args->isolate(), data, size).ToLocalChecked();
|
||
}
|
||
|
||
v8::Local<v8::Value> NativeImage::ToBitmap(gin::Arguments* args) {
|
||
float scale_factor = GetScaleFactorFromOptions(args);
|
||
|
||
const SkBitmap bitmap =
|
||
image_.AsImageSkia().GetRepresentation(scale_factor).GetBitmap();
|
||
SkPixelRef* ref = bitmap.pixelRef();
|
||
if (!ref)
|
||
return node::Buffer::New(args->isolate(), 0).ToLocalChecked();
|
||
return node::Buffer::Copy(args->isolate(),
|
||
reinterpret_cast<const char*>(ref->pixels()),
|
||
bitmap.computeByteSize())
|
||
.ToLocalChecked();
|
||
}
|
||
|
||
v8::Local<v8::Value> NativeImage::ToJPEG(v8::Isolate* isolate, int quality) {
|
||
std::vector<unsigned char> output;
|
||
gfx::JPEG1xEncodedDataFromImage(image_, quality, &output);
|
||
if (output.empty())
|
||
return node::Buffer::New(isolate, 0).ToLocalChecked();
|
||
return node::Buffer::Copy(isolate,
|
||
reinterpret_cast<const char*>(&output.front()),
|
||
output.size())
|
||
.ToLocalChecked();
|
||
}
|
||
|
||
std::string NativeImage::ToDataURL(gin::Arguments* args) {
|
||
float scale_factor = GetScaleFactorFromOptions(args);
|
||
|
||
if (scale_factor == 1.0f) {
|
||
// Use raw 1x PNG bytes when available
|
||
scoped_refptr<base::RefCountedMemory> png = image_.As1xPNGBytes();
|
||
if (png->size() > 0)
|
||
return webui::GetPngDataUrl(png->front(), png->size());
|
||
}
|
||
|
||
return webui::GetBitmapDataUrl(
|
||
image_.AsImageSkia().GetRepresentation(scale_factor).GetBitmap());
|
||
}
|
||
|
||
v8::Local<v8::Value> NativeImage::GetBitmap(gin::Arguments* args) {
|
||
float scale_factor = GetScaleFactorFromOptions(args);
|
||
|
||
const SkBitmap bitmap =
|
||
image_.AsImageSkia().GetRepresentation(scale_factor).GetBitmap();
|
||
SkPixelRef* ref = bitmap.pixelRef();
|
||
if (!ref)
|
||
return node::Buffer::New(args->isolate(), 0).ToLocalChecked();
|
||
return node::Buffer::New(args->isolate(),
|
||
reinterpret_cast<char*>(ref->pixels()),
|
||
bitmap.computeByteSize(), &Noop, nullptr)
|
||
.ToLocalChecked();
|
||
}
|
||
|
||
v8::Local<v8::Value> NativeImage::GetNativeHandle(
|
||
gin_helper::ErrorThrower thrower) {
|
||
#if defined(OS_MACOSX)
|
||
if (IsEmpty())
|
||
return node::Buffer::New(thrower.isolate(), 0).ToLocalChecked();
|
||
|
||
NSImage* ptr = image_.AsNSImage();
|
||
return node::Buffer::Copy(thrower.isolate(), reinterpret_cast<char*>(ptr),
|
||
sizeof(void*))
|
||
.ToLocalChecked();
|
||
#else
|
||
thrower.ThrowError("Not implemented");
|
||
return v8::Undefined(thrower.isolate());
|
||
#endif
|
||
}
|
||
|
||
bool NativeImage::IsEmpty() {
|
||
return image_.IsEmpty();
|
||
}
|
||
|
||
gfx::Size NativeImage::GetSize() {
|
||
return image_.Size();
|
||
}
|
||
|
||
float NativeImage::GetAspectRatio() {
|
||
gfx::Size size = GetSize();
|
||
if (size.IsEmpty())
|
||
return 1.f;
|
||
else
|
||
return static_cast<float>(size.width()) / static_cast<float>(size.height());
|
||
}
|
||
|
||
gin::Handle<NativeImage> NativeImage::Resize(
|
||
v8::Isolate* isolate,
|
||
const base::DictionaryValue& options) {
|
||
gfx::Size size = GetSize();
|
||
int width = size.width();
|
||
int height = size.height();
|
||
bool width_set = options.GetInteger("width", &width);
|
||
bool height_set = options.GetInteger("height", &height);
|
||
size.SetSize(width, height);
|
||
|
||
if (width_set && !height_set) {
|
||
// Scale height to preserve original aspect ratio
|
||
size.set_height(width);
|
||
size = gfx::ScaleToRoundedSize(size, 1.f, 1.f / GetAspectRatio());
|
||
} else if (height_set && !width_set) {
|
||
// Scale width to preserve original aspect ratio
|
||
size.set_width(height);
|
||
size = gfx::ScaleToRoundedSize(size, GetAspectRatio(), 1.f);
|
||
}
|
||
|
||
skia::ImageOperations::ResizeMethod method =
|
||
skia::ImageOperations::ResizeMethod::RESIZE_BEST;
|
||
std::string quality;
|
||
options.GetString("quality", &quality);
|
||
if (quality == "good")
|
||
method = skia::ImageOperations::ResizeMethod::RESIZE_GOOD;
|
||
else if (quality == "better")
|
||
method = skia::ImageOperations::ResizeMethod::RESIZE_BETTER;
|
||
|
||
gfx::ImageSkia resized = gfx::ImageSkiaOperations::CreateResizedImage(
|
||
image_.AsImageSkia(), method, size);
|
||
return gin::CreateHandle(isolate,
|
||
new NativeImage(isolate, gfx::Image(resized)));
|
||
}
|
||
|
||
gin::Handle<NativeImage> NativeImage::Crop(v8::Isolate* isolate,
|
||
const gfx::Rect& rect) {
|
||
gfx::ImageSkia cropped =
|
||
gfx::ImageSkiaOperations::ExtractSubset(image_.AsImageSkia(), rect);
|
||
return gin::CreateHandle(isolate,
|
||
new NativeImage(isolate, gfx::Image(cropped)));
|
||
}
|
||
|
||
void NativeImage::AddRepresentation(const gin_helper::Dictionary& options) {
|
||
int width = 0;
|
||
int height = 0;
|
||
float scale_factor = 1.0f;
|
||
options.Get("width", &width);
|
||
options.Get("height", &height);
|
||
options.Get("scaleFactor", &scale_factor);
|
||
|
||
bool skia_rep_added = false;
|
||
gfx::ImageSkia image_skia = image_.AsImageSkia();
|
||
|
||
v8::Local<v8::Value> buffer;
|
||
GURL url;
|
||
if (options.Get("buffer", &buffer) && node::Buffer::HasInstance(buffer)) {
|
||
auto* data = reinterpret_cast<unsigned char*>(node::Buffer::Data(buffer));
|
||
auto size = node::Buffer::Length(buffer);
|
||
skia_rep_added = electron::util::AddImageSkiaRepFromBuffer(
|
||
&image_skia, data, size, width, height, scale_factor);
|
||
} else if (options.Get("dataURL", &url)) {
|
||
std::string mime_type, charset, data;
|
||
if (net::DataURL::Parse(url, &mime_type, &charset, &data)) {
|
||
auto* data_ptr = reinterpret_cast<const unsigned char*>(data.c_str());
|
||
if (mime_type == "image/png") {
|
||
skia_rep_added = electron::util::AddImageSkiaRepFromPNG(
|
||
&image_skia, data_ptr, data.size(), scale_factor);
|
||
} else if (mime_type == "image/jpeg") {
|
||
skia_rep_added = electron::util::AddImageSkiaRepFromJPEG(
|
||
&image_skia, data_ptr, data.size(), scale_factor);
|
||
}
|
||
}
|
||
}
|
||
|
||
// Re-initialize image when first representation is added to an empty image
|
||
if (skia_rep_added && IsEmpty()) {
|
||
gfx::Image image(image_skia);
|
||
image_ = std::move(image);
|
||
}
|
||
}
|
||
|
||
#if !defined(OS_MACOSX)
|
||
void NativeImage::SetTemplateImage(bool setAsTemplate) {}
|
||
|
||
bool NativeImage::IsTemplateImage() {
|
||
return false;
|
||
}
|
||
#endif
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::CreateEmpty(v8::Isolate* isolate) {
|
||
return gin::CreateHandle(isolate, new NativeImage(isolate, gfx::Image()));
|
||
}
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::Create(v8::Isolate* isolate,
|
||
const gfx::Image& image) {
|
||
return gin::CreateHandle(isolate, new NativeImage(isolate, image));
|
||
}
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::CreateFromPNG(v8::Isolate* isolate,
|
||
const char* buffer,
|
||
size_t length) {
|
||
gfx::Image image = gfx::Image::CreateFrom1xPNGBytes(
|
||
reinterpret_cast<const unsigned char*>(buffer), length);
|
||
return Create(isolate, image);
|
||
}
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::CreateFromJPEG(v8::Isolate* isolate,
|
||
const char* buffer,
|
||
size_t length) {
|
||
gfx::Image image = gfx::ImageFrom1xJPEGEncodedData(
|
||
reinterpret_cast<const unsigned char*>(buffer), length);
|
||
return Create(isolate, image);
|
||
}
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::CreateFromPath(
|
||
v8::Isolate* isolate,
|
||
const base::FilePath& path) {
|
||
base::FilePath image_path = NormalizePath(path);
|
||
#if defined(OS_WIN)
|
||
if (image_path.MatchesExtension(FILE_PATH_LITERAL(".ico"))) {
|
||
return gin::CreateHandle(isolate, new NativeImage(isolate, image_path));
|
||
}
|
||
#endif
|
||
gfx::ImageSkia image_skia;
|
||
electron::util::PopulateImageSkiaRepsFromPath(&image_skia, image_path);
|
||
gfx::Image image(image_skia);
|
||
gin::Handle<NativeImage> handle = Create(isolate, image);
|
||
#if defined(OS_MACOSX)
|
||
if (IsTemplateFilename(image_path))
|
||
handle->SetTemplateImage(true);
|
||
#endif
|
||
return handle;
|
||
}
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::CreateFromBitmap(
|
||
gin_helper::ErrorThrower thrower,
|
||
v8::Local<v8::Value> buffer,
|
||
const gin_helper::Dictionary& options) {
|
||
if (!node::Buffer::HasInstance(buffer)) {
|
||
thrower.ThrowError("buffer must be a node Buffer");
|
||
return gin::Handle<NativeImage>();
|
||
}
|
||
|
||
unsigned int width = 0;
|
||
unsigned int height = 0;
|
||
double scale_factor = 1.;
|
||
|
||
if (!options.Get("width", &width)) {
|
||
thrower.ThrowError("width is required");
|
||
return gin::Handle<NativeImage>();
|
||
}
|
||
|
||
if (!options.Get("height", &height)) {
|
||
thrower.ThrowError("height is required");
|
||
return gin::Handle<NativeImage>();
|
||
}
|
||
|
||
auto info = SkImageInfo::MakeN32(width, height, kPremul_SkAlphaType);
|
||
auto size_bytes = info.computeMinByteSize();
|
||
|
||
if (size_bytes != node::Buffer::Length(buffer)) {
|
||
thrower.ThrowError("invalid buffer size");
|
||
return gin::Handle<NativeImage>();
|
||
}
|
||
|
||
options.Get("scaleFactor", &scale_factor);
|
||
|
||
if (width == 0 || height == 0) {
|
||
return CreateEmpty(thrower.isolate());
|
||
}
|
||
|
||
SkBitmap bitmap;
|
||
bitmap.allocN32Pixels(width, height, false);
|
||
bitmap.writePixels({info, node::Buffer::Data(buffer), bitmap.rowBytes()});
|
||
|
||
gfx::ImageSkia image_skia;
|
||
image_skia.AddRepresentation(gfx::ImageSkiaRep(bitmap, scale_factor));
|
||
|
||
return Create(thrower.isolate(), gfx::Image(image_skia));
|
||
}
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::CreateFromBuffer(
|
||
gin_helper::ErrorThrower thrower,
|
||
v8::Local<v8::Value> buffer,
|
||
gin::Arguments* args) {
|
||
if (!node::Buffer::HasInstance(buffer)) {
|
||
thrower.ThrowError("buffer must be a node Buffer");
|
||
return gin::Handle<NativeImage>();
|
||
}
|
||
|
||
int width = 0;
|
||
int height = 0;
|
||
double scale_factor = 1.;
|
||
|
||
gin_helper::Dictionary options;
|
||
if (args->GetNext(&options)) {
|
||
options.Get("width", &width);
|
||
options.Get("height", &height);
|
||
options.Get("scaleFactor", &scale_factor);
|
||
}
|
||
|
||
gfx::ImageSkia image_skia;
|
||
electron::util::AddImageSkiaRepFromBuffer(
|
||
&image_skia, reinterpret_cast<unsigned char*>(node::Buffer::Data(buffer)),
|
||
node::Buffer::Length(buffer), width, height, scale_factor);
|
||
return Create(args->isolate(), gfx::Image(image_skia));
|
||
}
|
||
|
||
// static
|
||
gin::Handle<NativeImage> NativeImage::CreateFromDataURL(v8::Isolate* isolate,
|
||
const GURL& url) {
|
||
std::string mime_type, charset, data;
|
||
if (net::DataURL::Parse(url, &mime_type, &charset, &data)) {
|
||
if (mime_type == "image/png")
|
||
return CreateFromPNG(isolate, data.c_str(), data.size());
|
||
else if (mime_type == "image/jpeg")
|
||
return CreateFromJPEG(isolate, data.c_str(), data.size());
|
||
}
|
||
|
||
return CreateEmpty(isolate);
|
||
}
|
||
|
||
#if !defined(OS_MACOSX)
|
||
gin::Handle<NativeImage> NativeImage::CreateFromNamedImage(
|
||
gin::Arguments* args,
|
||
const std::string& name) {
|
||
return CreateEmpty(args->isolate());
|
||
}
|
||
#endif
|
||
|
||
// static
|
||
void NativeImage::BuildPrototype(v8::Isolate* isolate,
|
||
v8::Local<v8::FunctionTemplate> prototype) {
|
||
prototype->SetClassName(gin::StringToV8(isolate, "NativeImage"));
|
||
gin_helper::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
||
.SetMethod("toPNG", &NativeImage::ToPNG)
|
||
.SetMethod("toJPEG", &NativeImage::ToJPEG)
|
||
.SetMethod("toBitmap", &NativeImage::ToBitmap)
|
||
.SetMethod("getBitmap", &NativeImage::GetBitmap)
|
||
.SetMethod("getNativeHandle", &NativeImage::GetNativeHandle)
|
||
.SetMethod("toDataURL", &NativeImage::ToDataURL)
|
||
.SetMethod("isEmpty", &NativeImage::IsEmpty)
|
||
.SetMethod("getSize", &NativeImage::GetSize)
|
||
.SetMethod("_setTemplateImage", &NativeImage::SetTemplateImage)
|
||
.SetMethod("_isTemplateImage", &NativeImage::IsTemplateImage)
|
||
.SetProperty("isMacTemplateImage", &NativeImage::IsTemplateImage,
|
||
&NativeImage::SetTemplateImage)
|
||
.SetMethod("resize", &NativeImage::Resize)
|
||
.SetMethod("crop", &NativeImage::Crop)
|
||
.SetMethod("getAspectRatio", &NativeImage::GetAspectRatio)
|
||
.SetMethod("addRepresentation", &NativeImage::AddRepresentation);
|
||
}
|
||
|
||
} // namespace api
|
||
|
||
} // namespace electron
|
||
|
||
namespace gin {
|
||
|
||
v8::Local<v8::Value> Converter<electron::api::NativeImage*>::ToV8(
|
||
v8::Isolate* isolate,
|
||
electron::api::NativeImage* val) {
|
||
if (val)
|
||
return val->GetWrapper();
|
||
else
|
||
return v8::Null(isolate);
|
||
}
|
||
|
||
bool Converter<electron::api::NativeImage*>::FromV8(
|
||
v8::Isolate* isolate,
|
||
v8::Local<v8::Value> val,
|
||
electron::api::NativeImage** out) {
|
||
// Try converting from file path.
|
||
base::FilePath path;
|
||
if (ConvertFromV8(isolate, val, &path)) {
|
||
*out = electron::api::NativeImage::CreateFromPath(isolate, path).get();
|
||
// Should throw when failed to initialize from path.
|
||
return !(*out)->image().IsEmpty();
|
||
}
|
||
|
||
*out = static_cast<electron::api::NativeImage*>(
|
||
static_cast<mate::WrappableBase*>(
|
||
mate::internal::FromV8Impl(isolate, val)));
|
||
return *out != nullptr;
|
||
}
|
||
|
||
} // namespace gin
|
||
|
||
namespace {
|
||
|
||
using electron::api::NativeImage;
|
||
|
||
void Initialize(v8::Local<v8::Object> exports,
|
||
v8::Local<v8::Value> unused,
|
||
v8::Local<v8::Context> context,
|
||
void* priv) {
|
||
v8::Isolate* isolate = context->GetIsolate();
|
||
gin_helper::Dictionary dict(isolate, exports);
|
||
dict.Set("NativeImage", NativeImage::GetConstructor(isolate)
|
||
->GetFunction(context)
|
||
.ToLocalChecked());
|
||
gin_helper::Dictionary native_image = gin::Dictionary::CreateEmpty(isolate);
|
||
dict.Set("nativeImage", native_image);
|
||
|
||
native_image.SetMethod("createEmpty", &NativeImage::CreateEmpty);
|
||
native_image.SetMethod("createFromPath", &NativeImage::CreateFromPath);
|
||
native_image.SetMethod("createFromBitmap", &NativeImage::CreateFromBitmap);
|
||
native_image.SetMethod("createFromBuffer", &NativeImage::CreateFromBuffer);
|
||
native_image.SetMethod("createFromDataURL", &NativeImage::CreateFromDataURL);
|
||
native_image.SetMethod("createFromNamedImage",
|
||
&NativeImage::CreateFromNamedImage);
|
||
}
|
||
|
||
} // namespace
|
||
|
||
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_common_native_image, Initialize)
|