Convert gfx::Image to NativeImage instance
This commit is contained in:
parent
b76615f3e7
commit
aae576b484
5 changed files with 111 additions and 4 deletions
2
atom.gyp
2
atom.gyp
|
@ -204,6 +204,8 @@
|
||||||
'atom/common/api/atom_api_crash_reporter.cc',
|
'atom/common/api/atom_api_crash_reporter.cc',
|
||||||
'atom/common/api/atom_api_id_weak_map.cc',
|
'atom/common/api/atom_api_id_weak_map.cc',
|
||||||
'atom/common/api/atom_api_id_weak_map.h',
|
'atom/common/api/atom_api_id_weak_map.h',
|
||||||
|
'atom/common/api/atom_api_native_image.cc',
|
||||||
|
'atom/common/api/atom_api_native_image.h',
|
||||||
'atom/common/api/atom_api_shell.cc',
|
'atom/common/api/atom_api_shell.cc',
|
||||||
'atom/common/api/atom_api_v8_util.cc',
|
'atom/common/api/atom_api_v8_util.cc',
|
||||||
'atom/common/api/atom_bindings.cc',
|
'atom/common/api/atom_bindings.cc',
|
||||||
|
|
65
atom/common/api/atom_api_native_image.cc
Normal file
65
atom/common/api/atom_api_native_image.cc
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
// 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 "atom/common/api/atom_api_native_image.h"
|
||||||
|
|
||||||
|
#include "atom/common/native_mate_converters/image_converter.h"
|
||||||
|
#include "native_mate/constructor.h"
|
||||||
|
#include "native_mate/dictionary.h"
|
||||||
|
#include "native_mate/object_template_builder.h"
|
||||||
|
|
||||||
|
#include "atom/common/node_includes.h"
|
||||||
|
|
||||||
|
namespace atom {
|
||||||
|
|
||||||
|
namespace api {
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
v8::Persistent<v8::ObjectTemplate> template_;
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
NativeImage::NativeImage(const gfx::Image& image) : image_(image) {}
|
||||||
|
|
||||||
|
NativeImage::~NativeImage() {}
|
||||||
|
|
||||||
|
mate::ObjectTemplateBuilder NativeImage::GetObjectTemplateBuilder(
|
||||||
|
v8::Isolate* isolate) {
|
||||||
|
if (template_.IsEmpty())
|
||||||
|
template_.Reset(isolate, mate::ObjectTemplateBuilder(isolate)
|
||||||
|
.SetMethod("toPng", &NativeImage::ToPNG)
|
||||||
|
.Build());
|
||||||
|
|
||||||
|
return mate::ObjectTemplateBuilder(
|
||||||
|
isolate, v8::Local<v8::ObjectTemplate>::New(isolate, template_));
|
||||||
|
}
|
||||||
|
|
||||||
|
v8::Handle<v8::Value> NativeImage::ToPNG(v8::Isolate* isolate) {
|
||||||
|
scoped_refptr<base::RefCountedMemory> png = image_.As1xPNGBytes();
|
||||||
|
return node::Buffer::New(isolate,
|
||||||
|
reinterpret_cast<const char*>(png->front()),
|
||||||
|
png->size());
|
||||||
|
}
|
||||||
|
|
||||||
|
// static
|
||||||
|
mate::Handle<NativeImage> NativeImage::Create(v8::Isolate* isolate,
|
||||||
|
const gfx::Image& image) {
|
||||||
|
return mate::CreateHandle(isolate, new NativeImage(image));
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace api
|
||||||
|
|
||||||
|
} // namespace atom
|
||||||
|
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
void Initialize(v8::Handle<v8::Object> exports, v8::Handle<v8::Value> unused,
|
||||||
|
v8::Handle<v8::Context> context, void* priv) {
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_common_native_image, Initialize)
|
41
atom/common/api/atom_api_native_image.h
Normal file
41
atom/common/api/atom_api_native_image.h
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
// Copyright (c) 2015 GitHub, Inc.
|
||||||
|
// Use of this source code is governed by the MIT license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#ifndef ATOM_COMMON_API_ATOM_API_NATIVE_IMAGE_H_
|
||||||
|
#define ATOM_COMMON_API_ATOM_API_NATIVE_IMAGE_H_
|
||||||
|
|
||||||
|
#include "native_mate/handle.h"
|
||||||
|
#include "native_mate/wrappable.h"
|
||||||
|
#include "ui/gfx/image/image.h"
|
||||||
|
|
||||||
|
namespace atom {
|
||||||
|
|
||||||
|
namespace api {
|
||||||
|
|
||||||
|
class NativeImage : public mate::Wrappable {
|
||||||
|
public:
|
||||||
|
static mate::Handle<NativeImage> Create(v8::Isolate* isolate,
|
||||||
|
const gfx::Image& image);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
NativeImage(const gfx::Image& image);
|
||||||
|
virtual ~NativeImage();
|
||||||
|
|
||||||
|
// mate::Wrappable:
|
||||||
|
mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
||||||
|
v8::Isolate* isolate) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
v8::Handle<v8::Value> ToPNG(v8::Isolate* isolate);
|
||||||
|
|
||||||
|
gfx::Image image_;
|
||||||
|
|
||||||
|
DISALLOW_COPY_AND_ASSIGN(NativeImage);
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace api
|
||||||
|
|
||||||
|
} // namespace atom
|
||||||
|
|
||||||
|
#endif // ATOM_COMMON_API_ATOM_API_NATIVE_IMAGE_H_
|
|
@ -7,6 +7,7 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "atom/common/api/atom_api_native_image.h"
|
||||||
#include "atom/common/native_mate_converters/file_path_converter.h"
|
#include "atom/common/native_mate_converters/file_path_converter.h"
|
||||||
#include "base/files/file_util.h"
|
#include "base/files/file_util.h"
|
||||||
#include "base/strings/string_util.h"
|
#include "base/strings/string_util.h"
|
||||||
|
@ -128,10 +129,7 @@ bool Converter<gfx::Image>::FromV8(v8::Isolate* isolate,
|
||||||
|
|
||||||
v8::Handle<v8::Value> Converter<gfx::Image>::ToV8(v8::Isolate* isolate,
|
v8::Handle<v8::Value> Converter<gfx::Image>::ToV8(v8::Isolate* isolate,
|
||||||
const gfx::Image& val) {
|
const gfx::Image& val) {
|
||||||
scoped_refptr<base::RefCountedMemory> png = val.As1xPNGBytes();
|
return ConvertToV8(isolate, atom::api::NativeImage::Create(isolate, val));
|
||||||
return node::Buffer::New(isolate,
|
|
||||||
reinterpret_cast<const char*>(png->front()),
|
|
||||||
png->size());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace mate
|
} // namespace mate
|
||||||
|
|
|
@ -72,6 +72,7 @@ REFERENCE_MODULE(atom_common_asar);
|
||||||
REFERENCE_MODULE(atom_common_clipboard);
|
REFERENCE_MODULE(atom_common_clipboard);
|
||||||
REFERENCE_MODULE(atom_common_crash_reporter);
|
REFERENCE_MODULE(atom_common_crash_reporter);
|
||||||
REFERENCE_MODULE(atom_common_id_weak_map);
|
REFERENCE_MODULE(atom_common_id_weak_map);
|
||||||
|
REFERENCE_MODULE(atom_common_native_image);
|
||||||
REFERENCE_MODULE(atom_common_screen);
|
REFERENCE_MODULE(atom_common_screen);
|
||||||
REFERENCE_MODULE(atom_common_shell);
|
REFERENCE_MODULE(atom_common_shell);
|
||||||
REFERENCE_MODULE(atom_common_v8_util);
|
REFERENCE_MODULE(atom_common_v8_util);
|
||||||
|
|
Loading…
Reference in a new issue