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.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_API_ELECTRON_API_NATIVE_IMAGE_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_API_ELECTRON_API_NATIVE_IMAGE_H_
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2015-02-12 06:32:51 +00:00
|
|
|
#include <string>
|
2020-05-18 16:29:24 +00:00
|
|
|
#include <vector>
|
2015-02-12 06:32:51 +00:00
|
|
|
|
2024-01-05 11:18:31 +00:00
|
|
|
#include "base/containers/flat_map.h"
|
2023-05-11 20:07:39 +00:00
|
|
|
#include "base/memory/raw_ptr.h"
|
2016-10-04 17:26:01 +00:00
|
|
|
#include "base/values.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "gin/handle.h"
|
2020-07-13 21:44:12 +00:00
|
|
|
#include "gin/wrappable.h"
|
2019-10-18 00:31:29 +00:00
|
|
|
#include "shell/common/gin_helper/error_thrower.h"
|
2015-02-11 08:03:19 +00:00
|
|
|
#include "ui/gfx/image/image.h"
|
2022-03-25 01:39:03 +00:00
|
|
|
#include "ui/gfx/image/image_skia_rep.h"
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_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 {
|
2019-10-18 00:31:29 +00:00
|
|
|
class Rect;
|
2015-02-11 08:49:43 +00:00
|
|
|
class Size;
|
2019-10-18 00:31:29 +00:00
|
|
|
} // namespace gfx
|
2015-02-11 08:49:43 +00:00
|
|
|
|
2019-10-18 00:31:29 +00:00
|
|
|
namespace gin_helper {
|
|
|
|
class Dictionary;
|
2015-02-12 07:19:05 +00:00
|
|
|
}
|
|
|
|
|
2020-07-13 21:44:12 +00:00
|
|
|
namespace gin {
|
|
|
|
class Arguments;
|
|
|
|
}
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::api {
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2020-07-13 21:44:12 +00:00
|
|
|
class NativeImage : public gin::Wrappable<NativeImage> {
|
2015-02-11 08:03:19 +00:00
|
|
|
public:
|
2021-09-07 17:37:45 +00:00
|
|
|
NativeImage(v8::Isolate* isolate, const gfx::Image& image);
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2021-09-07 17:37:45 +00:00
|
|
|
NativeImage(v8::Isolate* isolate, const base::FilePath& hicon_path);
|
|
|
|
#endif
|
|
|
|
~NativeImage() override;
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
NativeImage(const NativeImage&) = delete;
|
|
|
|
NativeImage& operator=(const NativeImage&) = delete;
|
|
|
|
|
2019-10-25 13:03:28 +00: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-18 01:44:10 +00:00
|
|
|
const char* buffer,
|
|
|
|
size_t length);
|
2019-10-25 13:03:28 +00:00
|
|
|
static gin::Handle<NativeImage> CreateFromPath(v8::Isolate* isolate,
|
|
|
|
const base::FilePath& path);
|
|
|
|
static gin::Handle<NativeImage> CreateFromBitmap(
|
2019-10-18 00:31:29 +00:00
|
|
|
gin_helper::ErrorThrower thrower,
|
2019-03-14 18:00:38 +00:00
|
|
|
v8::Local<v8::Value> buffer,
|
2019-10-18 00:31:29 +00:00
|
|
|
const gin_helper::Dictionary& options);
|
2019-10-25 13:03:28 +00:00
|
|
|
static gin::Handle<NativeImage> CreateFromBuffer(
|
2019-10-18 00:31:29 +00:00
|
|
|
gin_helper::ErrorThrower thrower,
|
|
|
|
v8::Local<v8::Value> buffer,
|
|
|
|
gin::Arguments* args);
|
2019-10-25 13:03:28 +00:00
|
|
|
static gin::Handle<NativeImage> CreateFromDataURL(v8::Isolate* isolate,
|
|
|
|
const GURL& url);
|
|
|
|
static gin::Handle<NativeImage> CreateFromNamedImage(gin::Arguments* args,
|
2020-05-11 01:24:45 +00:00
|
|
|
std::string name);
|
2022-02-10 02:58:52 +00:00
|
|
|
#if !BUILDFLAG(IS_LINUX)
|
2020-08-24 16:36:13 +00:00
|
|
|
static v8::Local<v8::Promise> CreateThumbnailFromPath(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const base::FilePath& path,
|
|
|
|
const gfx::Size& size);
|
|
|
|
#endif
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2021-01-25 01:24:10 +00:00
|
|
|
enum class OnConvertError { kThrow, kWarn };
|
|
|
|
|
|
|
|
static bool TryConvertNativeImage(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> image,
|
|
|
|
NativeImage** native_image,
|
|
|
|
OnConvertError on_error = OnConvertError::kThrow);
|
2021-01-04 20:58:31 +00:00
|
|
|
|
2020-07-13 21:44:12 +00:00
|
|
|
// gin::Wrappable
|
|
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
|
|
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) override;
|
|
|
|
const char* GetTypeName() override;
|
2015-02-11 11:22:41 +00:00
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_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
|
|
|
private:
|
2019-10-18 00:31:29 +00:00
|
|
|
v8::Local<v8::Value> ToPNG(gin::Arguments* args);
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Value> ToJPEG(v8::Isolate* isolate, int quality);
|
2019-10-18 00:31:29 +00:00
|
|
|
v8::Local<v8::Value> ToBitmap(gin::Arguments* args);
|
2020-05-18 16:29:24 +00:00
|
|
|
std::vector<float> GetScaleFactors();
|
2019-10-18 00:31:29 +00:00
|
|
|
v8::Local<v8::Value> GetBitmap(gin::Arguments* args);
|
|
|
|
v8::Local<v8::Value> GetNativeHandle(gin_helper::ErrorThrower thrower);
|
2020-05-18 16:29:24 +00:00
|
|
|
gin::Handle<NativeImage> Resize(gin::Arguments* args,
|
2022-07-05 15:25:18 +00:00
|
|
|
base::Value::Dict options);
|
2019-10-25 13:03:28 +00:00
|
|
|
gin::Handle<NativeImage> Crop(v8::Isolate* isolate, const gfx::Rect& rect);
|
2019-10-18 00:31:29 +00:00
|
|
|
std::string ToDataURL(gin::Arguments* args);
|
2015-02-11 08:49:43 +00:00
|
|
|
bool IsEmpty();
|
2024-01-10 22:23:35 +00:00
|
|
|
gfx::Size GetSize(const std::optional<float> scale_factor);
|
|
|
|
float GetAspectRatio(const std::optional<float> scale_factor);
|
2019-10-18 00:31:29 +00:00
|
|
|
void AddRepresentation(const gin_helper::Dictionary& options);
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2022-03-16 17:54:30 +00:00
|
|
|
void UpdateExternalAllocatedMemoryUsage();
|
2021-05-24 02:32:55 +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
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2016-05-20 08:51:05 +00:00
|
|
|
base::FilePath hicon_path_;
|
2024-01-05 11:18:31 +00:00
|
|
|
|
|
|
|
// size -> hicon
|
|
|
|
base::flat_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_;
|
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
raw_ptr<v8::Isolate> isolate_;
|
2022-03-16 17:54:30 +00:00
|
|
|
int32_t memory_usage_ = 0;
|
2015-02-11 08:03:19 +00:00
|
|
|
};
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::api
|
2015-02-11 08:03:19 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_API_ELECTRON_API_NATIVE_IMAGE_H_
|