2015-02-12 05:52:28 +00:00
|
|
|
# NativeImage
|
2014-06-23 14:58:42 +00:00
|
|
|
|
2015-04-16 03:31:12 +00:00
|
|
|
In Electron for the APIs that take images, you can pass either file paths or
|
2015-02-12 05:52:28 +00:00
|
|
|
`NativeImage` instances. When passing `null`, an empty image will be used.
|
2014-06-23 14:58:42 +00:00
|
|
|
|
|
|
|
For example when creating tray or setting window's icon, you can pass image's
|
|
|
|
file path as `String` to represent an image:
|
|
|
|
|
|
|
|
```javascript
|
2014-08-06 03:20:00 +00:00
|
|
|
var appIcon = new Tray('/Users/somebody/images/icon.png');
|
2014-06-23 14:58:42 +00:00
|
|
|
var window = new BrowserWindow({icon: '/Users/somebody/images/window.png'});
|
|
|
|
```
|
|
|
|
|
2015-02-12 05:52:28 +00:00
|
|
|
Or read the image from clipboard:
|
2014-06-23 14:58:42 +00:00
|
|
|
|
2015-02-12 05:52:28 +00:00
|
|
|
```javascript
|
|
|
|
var clipboard = require('clipboard');
|
|
|
|
var image = clipboard.readImage();
|
|
|
|
var appIcon = new Tray(image);
|
|
|
|
```
|
2015-01-03 03:15:09 +00:00
|
|
|
|
2015-02-12 05:52:28 +00:00
|
|
|
## Supported formats
|
|
|
|
|
|
|
|
Currently `PNG` and `JPEG` are supported, and it is recommended to use `PNG`
|
|
|
|
because it supports alpha channel and image is usually not compressed.
|
2014-06-23 14:58:42 +00:00
|
|
|
|
|
|
|
## High resolution image
|
|
|
|
|
|
|
|
On platforms that have high-DPI support, you can append `@2x` after image's
|
|
|
|
file name's base name to mark it as a high resolution image.
|
|
|
|
|
|
|
|
For example if `icon.png` is a normal image that has standard resolution, the
|
|
|
|
`icon@2x.png` would be treated as a high resolution image that has double DPI
|
|
|
|
dense.
|
2014-08-06 03:20:00 +00:00
|
|
|
|
|
|
|
If you want to support displays with different DPI denses at the same time, you
|
|
|
|
can put images with different sizes in the same folder, and use the filename
|
|
|
|
without DPI suffixes, like this:
|
|
|
|
|
|
|
|
```text
|
|
|
|
images/
|
|
|
|
├── icon.png
|
|
|
|
├── icon@2x.png
|
|
|
|
└── icon@3x.png
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
var appIcon = new Tray('/Users/somebody/images/icon.png');
|
|
|
|
```
|
|
|
|
|
|
|
|
Following suffixes as DPI denses are also supported:
|
|
|
|
|
|
|
|
* `@1x`
|
|
|
|
* `@1.25x`
|
|
|
|
* `@1.33x`
|
|
|
|
* `@1.4x`
|
|
|
|
* `@1.5x`
|
|
|
|
* `@1.8x`
|
|
|
|
* `@2x`
|
|
|
|
* `@2.5x`
|
|
|
|
* `@3x`
|
2015-01-03 03:15:09 +00:00
|
|
|
* `@4x`
|
|
|
|
* `@5x`
|
|
|
|
|
|
|
|
## Template image
|
|
|
|
|
|
|
|
Template images consist of black and clear colors (and an alpha channel).
|
|
|
|
Template images are not intended to be used as standalone images and are usually
|
|
|
|
mixed with other content to create the desired final appearance.
|
|
|
|
|
|
|
|
The most common case is to use template image for menu bar icon so it can adapt
|
|
|
|
to both light and dark menu bars.
|
|
|
|
|
|
|
|
Template image is only supported on Mac.
|
|
|
|
|
|
|
|
To mark an image as template image, its filename should end with the word
|
|
|
|
`Template`, examples are:
|
2014-08-06 03:20:00 +00:00
|
|
|
|
2015-01-03 03:15:09 +00:00
|
|
|
* `xxxTemplate.png`
|
|
|
|
* `xxxTemplate@2x.png`
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 05:55:45 +00:00
|
|
|
## nativeImage.createEmpty()
|
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
Creates an empty `NativeImage` instance.
|
2015-02-12 05:55:45 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
## nativeImage.createFromPath(path)
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
* `path` String
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
Creates a new `NativeImage` instance from file located at `path`.
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
## nativeImage.createFromBuffer(buffer[, scaleFactor])
|
2015-02-12 05:52:28 +00:00
|
|
|
|
|
|
|
* `buffer` [Buffer][buffer]
|
2015-02-12 07:38:16 +00:00
|
|
|
* `scaleFactor` Double
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
Creates a new `NativeImage` instance from `buffer`. The `scaleFactor` is 1.0 by
|
|
|
|
default.
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
## nativeImage.createFromDataUrl(dataUrl)
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
* `dataUrl` String
|
2015-02-12 05:52:28 +00:00
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
Creates a new `NativeImage` instance from `dataUrl`.
|
2015-02-12 05:52:28 +00:00
|
|
|
|
|
|
|
## Class: NativeImage
|
|
|
|
|
|
|
|
This class is used to represent an image.
|
|
|
|
|
|
|
|
### NativeImage.toPng()
|
|
|
|
|
|
|
|
Returns a [Buffer][buffer] that contains image's `PNG` encoded data.
|
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
### NativeImage.toJpeg(quality)
|
|
|
|
|
|
|
|
* `quality` Integer
|
2015-02-12 05:52:28 +00:00
|
|
|
|
|
|
|
Returns a [Buffer][buffer] that contains image's `JPEG` encoded data.
|
|
|
|
|
2015-02-12 07:38:16 +00:00
|
|
|
### NativeImage.toDataUrl()
|
|
|
|
|
|
|
|
Returns the data URL of image.
|
|
|
|
|
2015-02-12 05:52:28 +00:00
|
|
|
### NativeImage.isEmpty()
|
|
|
|
|
|
|
|
Returns whether the image is empty.
|
|
|
|
|
|
|
|
### NativeImage.getSize()
|
|
|
|
|
|
|
|
Returns the size of the image.
|
|
|
|
|
|
|
|
[buffer]: https://iojs.org/api/buffer.html#buffer_class_buffer
|
2015-04-08 08:20:03 +00:00
|
|
|
|
|
|
|
### NativeImage.setTemplateImage(option)
|
|
|
|
|
|
|
|
* `option` Boolean
|
|
|
|
|
2015-04-13 03:53:24 +00:00
|
|
|
Marks the image as template image.
|