// 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/native_mate_converters/image_converter.h" #import #include "base/mac/foundation_util.h" #include "base/mac/scoped_nsobject.h" #include "base/strings/sys_string_conversions.h" #include "ui/gfx/image/image.h" #include "ui/gfx/image/image_skia.h" namespace mate { bool Converter::FromV8(v8::Isolate* isolate, v8::Handle val, gfx::ImageSkia* out) { gfx::Image image; if (!ConvertFromV8(isolate, val, &image) || image.IsEmpty()) return false; gfx::ImageSkia image_skia = image.AsImageSkia(); if (image_skia.isNull()) return false; *out = image_skia; return true; } bool Converter::FromV8(v8::Isolate* isolate, v8::Handle val, gfx::Image* out) { std::string path; if (!ConvertFromV8(isolate, val, &path)) return false; base::scoped_nsobject image([[NSImage alloc] initByReferencingFile:base::SysUTF8ToNSString(path)]); *out = gfx::Image(image.release()); return true; } } // namespace mate