2015-02-11 16:03:19 +08:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 12:19:40 -08:00
|
|
|
#ifndef SHELL_COMMON_API_ELECTRON_API_NATIVE_IMAGE_H_
|
|
|
|
#define SHELL_COMMON_API_ELECTRON_API_NATIVE_IMAGE_H_
|
2015-02-11 16:03:19 +08:00
|
|
|
|
2016-05-20 17:51:05 +09:00
|
|
|
#include <map>
|
2015-02-12 14:32:51 +08:00
|
|
|
#include <string>
|
|
|
|
|
2016-10-04 10:26:01 -07:00
|
|
|
#include "base/values.h"
|
2019-10-25 22:03:28 +09:00
|
|
|
#include "gin/handle.h"
|
2019-10-18 09:31:29 +09:00
|
|
|
#include "shell/common/gin_helper/error_thrower.h"
|
2019-12-05 18:46:34 +09:00
|
|
|
#include "shell/common/gin_helper/wrappable.h"
|
2015-02-11 16:03:19 +08:00
|
|
|
#include "ui/gfx/image/image.h"
|
|
|
|
|
2016-05-20 11:31:02 +09:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 17:51:05 +09:00
|
|
|
#include "base/files/file_path.h"
|
2016-05-20 11:31:02 +09:00
|
|
|
#include "base/win/scoped_gdi_object.h"
|
|
|
|
#endif
|
|
|
|
|
2015-02-12 14:27:53 +08:00
|
|
|
class GURL;
|
|
|
|
|
2015-02-11 18:41:06 +08:00
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
|
|
|
|
2015-02-11 16:49:43 +08:00
|
|
|
namespace gfx {
|
2019-10-18 09:31:29 +09:00
|
|
|
class Rect;
|
2015-02-11 16:49:43 +08:00
|
|
|
class Size;
|
2019-10-18 09:31:29 +09:00
|
|
|
} // namespace gfx
|
2015-02-11 16:49:43 +08:00
|
|
|
|
2019-10-18 09:31:29 +09:00
|
|
|
namespace gin_helper {
|
|
|
|
class Dictionary;
|
2015-02-12 15:19:05 +08:00
|
|
|
}
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2015-02-11 16:03:19 +08:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2019-12-05 18:46:34 +09:00
|
|
|
class NativeImage : public gin_helper::Wrappable<NativeImage> {
|
2015-02-11 16:03:19 +08:00
|
|
|
public:
|
2019-10-25 22:03:28 +09:00
|
|
|
static gin::Handle<NativeImage> CreateEmpty(v8::Isolate* isolate);
|
|
|
|
static gin::Handle<NativeImage> Create(v8::Isolate* isolate,
|
|
|
|
const gfx::Image& image);
|
|
|
|
static gin::Handle<NativeImage> CreateFromPNG(v8::Isolate* isolate,
|
|
|
|
const char* buffer,
|
|
|
|
size_t length);
|
|
|
|
static gin::Handle<NativeImage> CreateFromJPEG(v8::Isolate* isolate,
|
2018-04-17 21:44:10 -04:00
|
|
|
const char* buffer,
|
|
|
|
size_t length);
|
2019-10-25 22:03:28 +09:00
|
|
|
static gin::Handle<NativeImage> CreateFromPath(v8::Isolate* isolate,
|
|
|
|
const base::FilePath& path);
|
|
|
|
static gin::Handle<NativeImage> CreateFromBitmap(
|
2019-10-18 09:31:29 +09:00
|
|
|
gin_helper::ErrorThrower thrower,
|
2019-03-14 19:00:38 +01:00
|
|
|
v8::Local<v8::Value> buffer,
|
2019-10-18 09:31:29 +09:00
|
|
|
const gin_helper::Dictionary& options);
|
2019-10-25 22:03:28 +09:00
|
|
|
static gin::Handle<NativeImage> CreateFromBuffer(
|
2019-10-18 09:31:29 +09:00
|
|
|
gin_helper::ErrorThrower thrower,
|
|
|
|
v8::Local<v8::Value> buffer,
|
|
|
|
gin::Arguments* args);
|
2019-10-25 22:03:28 +09:00
|
|
|
static gin::Handle<NativeImage> CreateFromDataURL(v8::Isolate* isolate,
|
|
|
|
const GURL& url);
|
|
|
|
static gin::Handle<NativeImage> CreateFromNamedImage(gin::Arguments* args,
|
|
|
|
const std::string& name);
|
2015-02-11 16:03:19 +08:00
|
|
|
|
2016-04-25 10:17:54 +09:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 18:08:12 +09:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2015-02-11 19:22:41 +08:00
|
|
|
|
2016-05-20 16:14:40 +09:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 17:51:05 +09:00
|
|
|
HICON GetHICON(int size);
|
2016-05-20 16:14:40 +09:00
|
|
|
#endif
|
2015-02-11 19:22:41 +08:00
|
|
|
|
2016-05-20 16:55:22 +09:00
|
|
|
const gfx::Image& image() const { return image_; }
|
|
|
|
|
2015-02-11 16:03:19 +08:00
|
|
|
protected:
|
2016-04-25 10:17:54 +09:00
|
|
|
NativeImage(v8::Isolate* isolate, const gfx::Image& image);
|
2016-05-20 11:31:02 +09:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 17:51:05 +09:00
|
|
|
NativeImage(v8::Isolate* isolate, const base::FilePath& hicon_path);
|
2016-05-20 11:31:02 +09:00
|
|
|
#endif
|
2016-04-25 10:17:54 +09:00
|
|
|
~NativeImage() override;
|
2015-02-11 16:03:19 +08:00
|
|
|
|
|
|
|
private:
|
2019-10-18 09:31:29 +09:00
|
|
|
v8::Local<v8::Value> ToPNG(gin::Arguments* args);
|
2015-05-22 19:11:22 +08:00
|
|
|
v8::Local<v8::Value> ToJPEG(v8::Isolate* isolate, int quality);
|
2019-10-18 09:31:29 +09:00
|
|
|
v8::Local<v8::Value> ToBitmap(gin::Arguments* args);
|
|
|
|
v8::Local<v8::Value> GetBitmap(gin::Arguments* args);
|
|
|
|
v8::Local<v8::Value> GetNativeHandle(gin_helper::ErrorThrower thrower);
|
2019-10-25 22:03:28 +09:00
|
|
|
gin::Handle<NativeImage> Resize(v8::Isolate* isolate,
|
2019-10-30 14:30:59 +09:00
|
|
|
base::DictionaryValue options);
|
2019-10-25 22:03:28 +09:00
|
|
|
gin::Handle<NativeImage> Crop(v8::Isolate* isolate, const gfx::Rect& rect);
|
2019-10-18 09:31:29 +09:00
|
|
|
std::string ToDataURL(gin::Arguments* args);
|
2015-02-11 16:49:43 +08:00
|
|
|
bool IsEmpty();
|
|
|
|
gfx::Size GetSize();
|
2016-10-05 09:15:06 -07:00
|
|
|
float GetAspectRatio();
|
2019-10-18 09:31:29 +09:00
|
|
|
void AddRepresentation(const gin_helper::Dictionary& options);
|
2015-02-11 16:03:19 +08:00
|
|
|
|
2015-04-13 11:53:24 +08:00
|
|
|
// Mark the image as template image.
|
|
|
|
void SetTemplateImage(bool setAsTemplate);
|
2015-07-26 21:58:48 -07:00
|
|
|
// Determine if the image is a template image.
|
|
|
|
bool IsTemplateImage();
|
2015-04-13 11:53:24 +08:00
|
|
|
|
2016-05-20 11:31:02 +09:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 17:51:05 +09:00
|
|
|
base::FilePath hicon_path_;
|
|
|
|
std::map<int, base::win::ScopedHICON> hicons_;
|
2016-05-20 11:31:02 +09:00
|
|
|
#endif
|
|
|
|
|
2015-02-11 16:03:19 +08:00
|
|
|
gfx::Image image_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(NativeImage);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2015-02-11 16:03:19 +08:00
|
|
|
|
2019-10-18 09:31:29 +09:00
|
|
|
namespace gin {
|
2016-05-20 16:14:40 +09:00
|
|
|
|
|
|
|
// A custom converter that allows converting path to NativeImage.
|
2018-04-17 21:44:10 -04:00
|
|
|
template <>
|
2019-10-25 22:03:28 +09:00
|
|
|
struct Converter<electron::api::NativeImage*> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
electron::api::NativeImage* val);
|
2018-04-17 21:44:10 -04:00
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
2019-10-25 22:03:28 +09:00
|
|
|
electron::api::NativeImage** out);
|
2016-05-20 16:14:40 +09:00
|
|
|
};
|
|
|
|
|
2019-10-18 09:31:29 +09:00
|
|
|
} // namespace gin
|
|
|
|
|
2020-02-04 12:19:40 -08:00
|
|
|
#endif // SHELL_COMMON_API_ELECTRON_API_NATIVE_IMAGE_H_
|