2015-02-11 08:03:19 +00: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.
|
|
|
|
|
|
|
|
#ifndef ATOM_COMMON_API_ATOM_API_NATIVE_IMAGE_H_
|
|
|
|
#define ATOM_COMMON_API_ATOM_API_NATIVE_IMAGE_H_
|
|
|
|
|
2016-05-20 08:51:05 +00:00
|
|
|
#include <map>
|
2015-02-12 06:32:51 +00:00
|
|
|
#include <string>
|
|
|
|
|
2016-10-04 17:26:01 +00:00
|
|
|
#include "base/values.h"
|
2015-02-11 08:03:19 +00:00
|
|
|
#include "native_mate/handle.h"
|
|
|
|
#include "native_mate/wrappable.h"
|
2016-10-04 18:23:18 +00:00
|
|
|
#include "ui/gfx/geometry/rect.h"
|
2015-02-11 08:03:19 +00:00
|
|
|
#include "ui/gfx/image/image.h"
|
|
|
|
|
2016-05-20 02:31:02 +00:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 08:51:05 +00:00
|
|
|
#include "base/files/file_path.h"
|
2016-05-20 02:31:02 +00:00
|
|
|
#include "base/win/scoped_gdi_object.h"
|
|
|
|
#endif
|
|
|
|
|
2015-02-12 06:27:53 +00:00
|
|
|
class GURL;
|
|
|
|
|
2015-02-11 10:41:06 +00:00
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
|
|
|
|
2015-02-11 08:49:43 +00:00
|
|
|
namespace gfx {
|
|
|
|
class Size;
|
|
|
|
}
|
|
|
|
|
2015-02-12 07:19:05 +00:00
|
|
|
namespace mate {
|
|
|
|
class Arguments;
|
|
|
|
}
|
|
|
|
|
2015-02-11 08:03:19 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
class NativeImage : public mate::Wrappable<NativeImage> {
|
2015-02-11 08:03:19 +00:00
|
|
|
public:
|
2015-02-12 05:55:45 +00:00
|
|
|
static mate::Handle<NativeImage> CreateEmpty(v8::Isolate* isolate);
|
2015-02-11 10:02:59 +00:00
|
|
|
static mate::Handle<NativeImage> Create(
|
|
|
|
v8::Isolate* isolate, const gfx::Image& image);
|
|
|
|
static mate::Handle<NativeImage> CreateFromPNG(
|
2015-02-12 06:27:53 +00:00
|
|
|
v8::Isolate* isolate, const char* buffer, size_t length);
|
2015-02-11 10:02:59 +00:00
|
|
|
static mate::Handle<NativeImage> CreateFromJPEG(
|
2015-02-12 06:27:53 +00:00
|
|
|
v8::Isolate* isolate, const char* buffer, size_t length);
|
2015-02-11 10:41:06 +00:00
|
|
|
static mate::Handle<NativeImage> CreateFromPath(
|
|
|
|
v8::Isolate* isolate, const base::FilePath& path);
|
2015-02-12 07:19:05 +00:00
|
|
|
static mate::Handle<NativeImage> CreateFromBuffer(
|
2015-05-22 11:11:22 +00:00
|
|
|
mate::Arguments* args, v8::Local<v8::Value> buffer);
|
2015-02-12 06:27:53 +00:00
|
|
|
static mate::Handle<NativeImage> CreateFromDataURL(
|
|
|
|
v8::Isolate* isolate, const GURL& url);
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 09:08:12 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2015-02-11 11:22:41 +00:00
|
|
|
|
2016-05-20 07:14:40 +00:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 08:51:05 +00:00
|
|
|
HICON GetHICON(int size);
|
2016-05-20 07:14:40 +00:00
|
|
|
#endif
|
2015-02-11 11:22:41 +00:00
|
|
|
|
2016-05-20 07:55:22 +00:00
|
|
|
const gfx::Image& image() const { return image_; }
|
|
|
|
|
2015-02-11 08:03:19 +00:00
|
|
|
protected:
|
2016-04-25 01:17:54 +00:00
|
|
|
NativeImage(v8::Isolate* isolate, const gfx::Image& image);
|
2016-05-20 02:31:02 +00:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 08:51:05 +00:00
|
|
|
NativeImage(v8::Isolate* isolate, const base::FilePath& hicon_path);
|
2016-05-20 02:31:02 +00:00
|
|
|
#endif
|
2016-04-25 01:17:54 +00:00
|
|
|
~NativeImage() override;
|
2015-02-11 08:03:19 +00:00
|
|
|
|
|
|
|
private:
|
2017-03-07 00:19:16 +00:00
|
|
|
v8::Local<v8::Value> ToPNG(mate::Arguments* args);
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Value> ToJPEG(v8::Isolate* isolate, int quality);
|
2017-03-07 00:19:16 +00:00
|
|
|
v8::Local<v8::Value> ToBitmap(mate::Arguments* args);
|
|
|
|
v8::Local<v8::Value> GetBitmap(mate::Arguments* args);
|
2016-03-15 02:50:31 +00:00
|
|
|
v8::Local<v8::Value> GetNativeHandle(
|
2016-03-14 03:18:03 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
mate::Arguments* args);
|
2016-10-04 17:26:01 +00:00
|
|
|
mate::Handle<NativeImage> Resize(v8::Isolate* isolate,
|
|
|
|
const base::DictionaryValue& options);
|
2016-10-04 18:23:18 +00:00
|
|
|
mate::Handle<NativeImage> Crop(v8::Isolate* isolate,
|
2016-10-05 15:02:04 +00:00
|
|
|
const gfx::Rect& rect);
|
2017-03-07 00:19:16 +00:00
|
|
|
std::string ToDataURL(mate::Arguments* args);
|
2015-02-11 08:49:43 +00:00
|
|
|
bool IsEmpty();
|
|
|
|
gfx::Size GetSize();
|
2016-10-05 16:15:06 +00:00
|
|
|
float GetAspectRatio();
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2015-04-13 03:53:24 +00:00
|
|
|
// Mark the image as template image.
|
|
|
|
void SetTemplateImage(bool setAsTemplate);
|
2015-07-27 04:58:48 +00:00
|
|
|
// Determine if the image is a template image.
|
|
|
|
bool IsTemplateImage();
|
2015-04-13 03:53:24 +00:00
|
|
|
|
2016-05-20 02:31:02 +00:00
|
|
|
#if defined(OS_WIN)
|
2016-05-20 08:51:05 +00:00
|
|
|
base::FilePath hicon_path_;
|
|
|
|
std::map<int, base::win::ScopedHICON> hicons_;
|
2016-05-20 02:31:02 +00:00
|
|
|
#endif
|
|
|
|
|
2015-02-11 08:03:19 +00:00
|
|
|
gfx::Image image_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(NativeImage);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2016-05-20 07:14:40 +00:00
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
// A custom converter that allows converting path to NativeImage.
|
|
|
|
template<>
|
|
|
|
struct Converter<mate::Handle<atom::api::NativeImage>> {
|
|
|
|
static v8::Local<v8::Value> ToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const mate::Handle<atom::api::NativeImage>& val);
|
|
|
|
static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val,
|
|
|
|
mate::Handle<atom::api::NativeImage>* out);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
|
|
|
|
2015-02-11 08:03:19 +00:00
|
|
|
#endif // ATOM_COMMON_API_ATOM_API_NATIVE_IMAGE_H_
|