Add nativeImage.createFromNamedImage API
This commit is contained in:
parent
c85b159d46
commit
e027ba9c47
3 changed files with 31 additions and 0 deletions
|
@ -541,6 +541,14 @@ mate::Handle<NativeImage> NativeImage::CreateFromDataURL(
|
||||||
return CreateEmpty(isolate);
|
return CreateEmpty(isolate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if !defined(OS_MACOSX)
|
||||||
|
mate::Handle<NativeImage> NativeImage::CreateFromNamedImage(
|
||||||
|
mate::Arguments* args, const std::string& name) {
|
||||||
|
args->ThrowError("Cannot create NativeImage from a name on non-darwin platforms");
|
||||||
|
return CreateEmpty(args->isolate());
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// static
|
// static
|
||||||
void NativeImage::BuildPrototype(
|
void NativeImage::BuildPrototype(
|
||||||
v8::Isolate* isolate, v8::Local<v8::FunctionTemplate> prototype) {
|
v8::Isolate* isolate, v8::Local<v8::FunctionTemplate> prototype) {
|
||||||
|
@ -609,6 +617,7 @@ void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
||||||
dict.SetMethod("createFromBuffer", &atom::api::NativeImage::CreateFromBuffer);
|
dict.SetMethod("createFromBuffer", &atom::api::NativeImage::CreateFromBuffer);
|
||||||
dict.SetMethod("createFromDataURL",
|
dict.SetMethod("createFromDataURL",
|
||||||
&atom::api::NativeImage::CreateFromDataURL);
|
&atom::api::NativeImage::CreateFromDataURL);
|
||||||
|
dict.SetMethod("createFromNamedImage", &atom::api::NativeImage::CreateFromNamedImage);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
|
@ -53,6 +53,8 @@ class NativeImage : public mate::Wrappable<NativeImage> {
|
||||||
mate::Arguments* args, v8::Local<v8::Value> buffer);
|
mate::Arguments* args, v8::Local<v8::Value> buffer);
|
||||||
static mate::Handle<NativeImage> CreateFromDataURL(
|
static mate::Handle<NativeImage> CreateFromDataURL(
|
||||||
v8::Isolate* isolate, const GURL& url);
|
v8::Isolate* isolate, const GURL& url);
|
||||||
|
static mate::Handle<NativeImage> CreateFromNamedImage(
|
||||||
|
mate::Arguments* args, const std::string& name);
|
||||||
|
|
||||||
static void BuildPrototype(v8::Isolate* isolate,
|
static void BuildPrototype(v8::Isolate* isolate,
|
||||||
v8::Local<v8::FunctionTemplate> prototype);
|
v8::Local<v8::FunctionTemplate> prototype);
|
||||||
|
|
|
@ -6,10 +6,30 @@
|
||||||
|
|
||||||
#import <Cocoa/Cocoa.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
|
|
||||||
|
#include "base/strings/sys_string_conversions.h"
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
namespace api {
|
namespace api {
|
||||||
|
|
||||||
|
mate::Handle<NativeImage> NativeImage::CreateFromNamedImage(
|
||||||
|
mate::Arguments* args, const std::string& name) {
|
||||||
|
@autoreleasepool {
|
||||||
|
NSImage* image = [NSImage imageNamed:base::SysUTF8ToNSString(name)];
|
||||||
|
if (!image.valid) {
|
||||||
|
args->ThrowError("Cannot create image from name: " + name);
|
||||||
|
return CreateEmpty(args->isolate());
|
||||||
|
}
|
||||||
|
|
||||||
|
CGImageRef ref = [image CGImageForProposedRect:nil context:nil hints:nil];
|
||||||
|
NSBitmapImageRep* rep = [[NSBitmapImageRep alloc] initWithCGImage:ref];
|
||||||
|
[rep setSize:[image size]];
|
||||||
|
NSData* pngData = [rep representationUsingType:NSPNGFileType properties:[[NSDictionary alloc] init]];
|
||||||
|
|
||||||
|
return CreateFromPNG(args->isolate(), (char *) [pngData bytes], [pngData length]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void NativeImage::SetTemplateImage(bool setAsTemplate) {
|
void NativeImage::SetTemplateImage(bool setAsTemplate) {
|
||||||
[image_.AsNSImage() setTemplate:setAsTemplate];
|
[image_.AsNSImage() setTemplate:setAsTemplate];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue