2015-11-12 21:20:09 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								# nativeImage
 
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-04-21 15:39:12 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  Create tray, dock, and application icons using PNG or JPG files.
 
							 
						 
					
						
							
								
									
										
										
										
											2016-04-21 15:35:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-23 11:20:56 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Process: [Main ](../glossary.md#main-process ), [Renderer ](../glossary.md#renderer-process )
							 
						 
					
						
							
								
									
										
										
										
											2016-11-03 10:26:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-28 21:33:45 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								In Electron, for the APIs that take images, you can pass either file paths or
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`NativeImage`  instances. An empty image will be used when `null`  is passed.
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-28 21:33:45 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								For example, when creating a tray or setting a window's icon, you can pass an
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								image file path as a `string` :
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow, Tray } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:47:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const appIcon = new Tray('/Users/somebody/images/icon.png')
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow({ icon: '/Users/somebody/images/window.png' })
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								console.log(appIcon, win)
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Or read the image from the clipboard, which returns a `NativeImage` :
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { clipboard, Tray } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:47:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const image = clipboard.readImage()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								const appIcon = new Tray(image)
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								console.log(appIcon)
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2015-01-02 19:15:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-09-01 16:21:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## Supported Formats
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-09-01 16:21:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Currently `PNG`  and `JPEG`  image formats are supported. `PNG`  is recommended
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								because of its support for transparency and lossless compression.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-08 19:08:09 +03:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								On Windows, you can also load `ICO`  icons from file paths. For best visual
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								quality, it is recommended to include at least the following sizes in the:
							 
						 
					
						
							
								
									
										
										
										
											2016-08-01 13:13:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  Small icon
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  16x16 (100% DPI scale)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  20x20 (125% DPI scale)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  24x24 (150% DPI scale)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  32x32 (200% DPI scale)
							 
						 
					
						
							
								
									
										
										
										
											2016-08-01 13:13:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  Large icon
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  32x32 (100% DPI scale)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  40x40 (125% DPI scale)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  48x48 (150% DPI scale)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  64x64 (200% DPI scale)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  256x256
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Check the _Size requirements_  section in [this article][icons].
							 
						 
					
						
							
								
									
										
										
										
											2016-08-01 13:13:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-21 08:39:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[icons]: https://learn.microsoft.com/en-us/windows/win32/uxguide/vis-icons
							 
						 
					
						
							
								
									
										
										
										
											2016-08-01 13:13:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-09-01 16:21:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## High Resolution Image
 
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								On platforms that have high-DPI support such as Apple Retina displays, you can
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								append `@2x`  after image's base filename to mark it as a high resolution image.
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 22:58:42 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								For example, if `icon.png`  is a normal image that has standard resolution, then
							 
						 
					
						
							
								
									
										
										
										
											2015-09-01 16:21:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`icon@2x.png`  will be treated as a high resolution image that has double DPI
							 
						 
					
						
							
								
									
										
										
										
											2015-05-23 16:00:09 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								density.
							 
						 
					
						
							
								
									
										
										
										
											2014-08-06 11:20:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-30 20:52:46 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If you want to support displays with different DPI densities at the same time,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								you can put images with different sizes in the same folder and use the filename
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								without DPI suffixes. For example:
							 
						 
					
						
							
								
									
										
										
										
											2014-08-06 11:20:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2014-08-06 11:20:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								images/
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								├── icon.png
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								├── icon@2x .png
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								└── icon@3x .png
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { Tray } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const appIcon = new Tray('/Users/somebody/images/icon.png')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								console.log(appIcon)
							 
						 
					
						
							
								
									
										
										
										
											2014-08-06 11:20:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The following suffixes for DPI are also supported:
							 
						 
					
						
							
								
									
										
										
										
											2014-08-06 11:20:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@1x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@1.25x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@1.33x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@1.4x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@1.5x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@1.8x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@2x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@2.5x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@3x` 
							 
						 
					
						
							
								
									
										
										
										
											2015-01-02 19:15:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `@4x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `@5x` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-28 21:33:45 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## Template Image
 
							 
						 
					
						
							
								
									
										
										
										
											2015-01-02 19:15:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-06-02 20:41:19 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Template images consist of black and an alpha channel.
							 
						 
					
						
							
								
									
										
										
										
											2015-01-02 19:15:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Template images are not intended to be used as standalone images and are usually
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								mixed with other content to create the desired final appearance.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The most common case is to use template images for a menu bar icon, so it can
							 
						 
					
						
							
								
									
										
										
										
											2015-08-30 20:52:46 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								adapt to both light and dark menu bars.
							 
						 
					
						
							
								
									
										
										
										
											2015-01-02 19:15:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-18 15:26:26 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								**Note:** Template image is only supported on macOS.
							 
						 
					
						
							
								
									
										
										
										
											2015-01-02 19:15:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-28 21:33:45 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								To mark an image as a template image, its filename should end with the word
							 
						 
					
						
							
								
									
										
										
										
											2015-08-30 20:52:46 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`Template` . For example:
							 
						 
					
						
							
								
									
										
										
										
											2014-08-06 11:20:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-02 19:15:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `xxxTemplate.png` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `xxxTemplate@2x.png` 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-28 21:33:45 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## Methods
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The `nativeImage`  module has the following methods, all of which return
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								an instance of the `NativeImage`  class:
							 
						 
					
						
							
								
									
										
										
										
											2015-08-28 21:33:45 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-11-12 21:20:09 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `nativeImage.createEmpty()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:55:45 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `NativeImage` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Creates an empty `NativeImage`  instance.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:55:45 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-09 03:48:29 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `nativeImage.createThumbnailFromPath(path, size)` _macOS_ _Windows_
 
							 
						 
					
						
							
								
									
										
										
										
											2020-08-24 09:36:13 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `path`  string - path to a file that we intend to construct a thumbnail out of.
							 
						 
					
						
							
								
									
										
										
										
											2023-03-09 03:48:29 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `size`  [Size ](structures/size.md ) - the desired width and height (positive numbers) of the thumbnail.
							 
						 
					
						
							
								
									
										
										
										
											2020-08-24 09:36:13 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `Promise<NativeImage>`  - fulfilled with the file's thumbnail preview image, which is a [NativeImage ](native-image.md ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-09 03:48:29 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Note: The Windows implementation will ignore `size.height`  and scale the height according to `size.width` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-11-12 21:20:09 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `nativeImage.createFromPath(path)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `path`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `NativeImage` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-21 10:48:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Creates a new `NativeImage`  instance from a file located at `path` . This method
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								returns an empty image if the `path`  does not exist, cannot be read, or is not
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								a valid image.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const nativeImage = require('electron').nativeImage
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const image = nativeImage.createFromPath('/Users/somebody/images/icon.png')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								console.log(image)
							 
						 
					
						
							
								
									
										
										
										
											2016-06-08 23:34:45 +07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-03-14 19:00:38 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `nativeImage.createFromBitmap(buffer, options)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `buffer`  [Buffer][buffer]
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `width`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `height`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2019-03-14 19:00:38 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `NativeImage` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Creates a new `NativeImage`  instance from `buffer`  that contains the raw bitmap
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								pixel data returned by `toBitmap()` . The specific format is platform-dependent.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-12-14 10:12:37 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `nativeImage.createFromBuffer(buffer[, options])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `buffer`  [Buffer][buffer]
							 
						 
					
						
							
								
									
										
										
										
											2016-12-13 21:30:45 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2016-12-14 10:19:38 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `width`  Integer (optional) - Required for bitmap buffers.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `height`  Integer (optional) - Required for bitmap buffers.
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `NativeImage` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-03-14 19:00:38 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Creates a new `NativeImage`  instance from `buffer` . Tries to decode as PNG or JPEG first.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-11-13 16:03:40 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `nativeImage.createFromDataURL(dataURL)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `dataURL`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-05-16 01:24:06 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `NativeImage` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Creates a new `NativeImage`  instance from `dataURL` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-10-10 17:05:13 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `nativeImage.createFromNamedImage(imageName[, hslShift])` _macOS_
 
							 
						 
					
						
							
								
									
										
										
										
											2017-10-10 03:16:24 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `imageName`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `hslShift`  number[] (optional)
							 
						 
					
						
							
								
									
										
										
										
											2017-10-10 03:16:24 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `NativeImage` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Creates a new `NativeImage`  instance from the NSImage that maps to the
							 
						 
					
						
							
								
									
										
										
										
											2019-05-18 22:00:08 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								given image name. See [`System Icons` ](https://developer.apple.com/design/human-interface-guidelines/macos/icons-and-images/system-icons/ )
							 
						 
					
						
							
								
									
										
										
										
											2017-10-10 03:16:24 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								for a list of possible values.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The `hslShift`  is applied to the image with the following rules:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-10-10 17:05:13 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `hsl_shift[0]`  (hue): The absolute hue value for the image - 0 and 1 map
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								     to 0 and 360 on the hue color wheel (red).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `hsl_shift[1]`  (saturation): A saturation shift for the image, with the
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:58:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    following key values:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    0 = remove all color.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    0.5 = leave unchanged.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    1 = fully saturate the image.
							 
						 
					
						
							
								
									
										
										
										
											2017-10-10 17:05:13 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `hsl_shift[2]`  (lightness): A lightness shift for the image, with the
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:58:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    following key values:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    0 = remove all lightness (make all pixels black).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    0.5 = leave unchanged.
							 
						 
					
						
							
								
									
										
										
										
											2017-10-10 17:05:13 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    1 = full lightness (make all pixels white).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This means that `[-1, 0, 1]`  will make the image completely white and
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`[-1, 1, 0]`  will make the image completely black.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-04-17 15:06:51 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								In some cases, the `NSImageName`  doesn't match its string representation; one example of this is `NSFolderImageName` , whose string representation would actually be `NSFolder` . Therefore, you'll need to determine the correct string representation for your image before passing it in. This can be done with the following:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`echo -e '#import <Cocoa/Cocoa.h>\nint main() { NSLog(@"%@", SYSTEM_IMAGE_NAME); }' | clang -otest -x objective-c -framework Cocoa - && ./test` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								where `SYSTEM_IMAGE_NAME`  should be replaced with any value from [this list ](https://developer.apple.com/documentation/appkit/nsimagename?language=objc ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## Class: NativeImage
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-22 14:11:03 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  Natively wrap images such as tray, dock, and application icons.
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-06-15 13:50:31 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Process: [Main ](../glossary.md#main-process ), [Renderer ](../glossary.md#renderer-process )< br  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								_This class is not exported from the `'electron'`  module. It is only available as a return value of other methods in the Electron API._
							 
						 
					
						
							
								
									
										
										
										
											2016-11-03 11:50:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### Instance Methods
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-28 21:33:45 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The following methods are available on instances of the `NativeImage`  class:
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-03-06 16:22:48 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.toPNG([options])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Buffer`  - A [Buffer][buffer] that contains the image's `PNG`  encoded data.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.toJPEG(quality)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 15:38:16 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-06 08:29:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `quality`  Integer - Between 0 - 100.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Buffer`  - A [Buffer][buffer] that contains the image's `JPEG`  encoded data.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-03-06 16:22:48 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.toBitmap([options])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-01 02:14:45 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Buffer`  - A [Buffer][buffer] that contains a copy of the image's raw bitmap pixel
							 
						 
					
						
							
								
									
										
										
										
											2016-08-05 17:55:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								data.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-01 02:14:45 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-03-06 16:22:48 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.toDataURL([options])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 15:38:16 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `string`  - The data URL of the image.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 15:38:16 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-03-06 16:22:48 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.getBitmap([options])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-04 19:45:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Buffer`  - A [Buffer][buffer] that contains the image's raw bitmap pixel data.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-05 17:55:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The difference between `getBitmap()`  and `toBitmap()`  is that `getBitmap()`  does not
							 
						 
					
						
							
								
									
										
										
										
											2016-08-05 17:55:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								copy the bitmap data, so you have to use the returned Buffer immediately in
							 
						 
					
						
							
								
									
										
										
										
											2019-08-19 18:15:13 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								current event loop tick; otherwise the data might be changed or destroyed.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-04 19:45:06 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.getNativeHandle()` _macOS_
 
							 
						 
					
						
							
								
									
										
										
										
											2016-03-13 20:11:43 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Buffer`  - A [Buffer][buffer] that stores C pointer to underlying native handle of
							 
						 
					
						
							
								
									
										
										
										
											2016-06-18 15:26:26 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								the image. On macOS, a pointer to `NSImage`  instance would be returned.
							 
						 
					
						
							
								
									
										
										
										
											2016-03-13 20:11:43 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-03-17 21:55:02 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Notice that the returned pointer is a weak pointer to the underlying native
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								image instead of a copy, so you _must_  ensure that the associated
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`nativeImage`  instance is kept around.
							 
						 
					
						
							
								
									
										
										
										
											2016-03-13 20:11:43 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.isEmpty()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the image is empty.
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-05-20 18:52:48 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.getSize([scaleFactor])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-12 13:52:28 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2020-05-20 18:52:48 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns [`Size` ](structures/size.md ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								If `scaleFactor`  is passed, this will return the size corresponding to the image representation most closely matching the passed value.
							 
						 
					
						
							
								
									
										
										
										
											2015-04-08 13:50:03 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.setTemplateImage(option)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-04-08 13:50:03 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `option`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2015-04-08 13:50:03 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Marks the image as a template image.
							 
						 
					
						
							
								
									
										
										
										
											2015-07-29 11:48:40 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-22 13:42:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.isTemplateImage()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-07-29 11:48:40 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the image is a template image.
							 
						 
					
						
							
								
									
										
										
										
											2016-10-04 21:34:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-10-05 08:02:04 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.crop(rect)`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-10-04 11:42:14 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:38:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `rect`  [Rectangle ](structures/rectangle.md ) - The area of the image to crop.
							 
						 
					
						
							
								
									
										
										
										
											2016-10-04 11:42:14 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `NativeImage`  - The cropped image.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `image.resize(options)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object
							 
						 
					
						
							
								
									
										
										
										
											2017-03-09 10:12:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `width`  Integer (optional) - Defaults to the image's width.
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:38:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `height`  Integer (optional) - Defaults to the image's height.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `quality`  string (optional) - The desired quality of the resize image.
							 
						 
					
						
							
								
									
										
										
										
											2023-07-31 16:32:59 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    Possible values include `good` , `better` , or `best` . The default is `best` .
							 
						 
					
						
							
								
									
										
										
										
											2016-10-04 11:42:14 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    These values express a desired quality/speed tradeoff. They are translated
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    into an algorithm-specific method that depends on the capabilities
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    (CPU, GPU) of the underlying platform. It is possible for all three methods
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    to be mapped to the same algorithm on a given platform.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `NativeImage`  - The resized image.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-10-05 09:15:06 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If only the `height`  or the `width`  are specified then the current aspect ratio
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								will be preserved in the resized image.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-05-20 18:52:48 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.getAspectRatio([scaleFactor])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `scaleFactor`  Number (optional) - Defaults to 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2016-10-05 09:15:06 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Number`  - The image's aspect ratio.
							 
						 
					
						
							
								
									
										
										
										
											2016-10-05 09:15:06 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-05-20 18:52:48 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If `scaleFactor`  is passed, this will return the aspect ratio corresponding to the image representation most closely matching the passed value.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `image.getScaleFactors()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Number[]`  - An array of all scale factors corresponding to representations for a given nativeImage.
							 
						 
					
						
							
								
									
										
										
										
											2020-05-20 18:52:48 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-03-07 14:29:37 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `image.addRepresentation(options)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object
							 
						 
					
						
							
								
									
										
										
										
											2022-07-26 00:57:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  Number (optional) - The scale factor to add the image representation for.
							 
						 
					
						
							
								
									
										
										
										
											2017-03-09 10:12:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `width`  Integer (optional) - Defaults to 0. Required if a bitmap buffer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    is specified as `buffer` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `height`  Integer (optional) - Defaults to 0. Required if a bitmap buffer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    is specified as `buffer` .
							 
						 
					
						
							
								
									
										
										
										
											2017-03-07 14:29:37 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `buffer`  Buffer (optional) - The buffer containing the raw image data.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `dataURL`  string (optional) - The data URL containing either a base 64
							 
						 
					
						
							
								
									
										
										
										
											2017-03-07 14:29:37 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    encoded PNG or JPEG image.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Add an image representation for a specific scale factor. This can be used
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								to explicitly add different scale factor representations to an image. This
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								can be called on empty images.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-10-04 21:34:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[buffer]: https://nodejs.org/api/buffer.html#buffer_class_buffer 
							 
						 
					
						
							
								
									
										
										
										
											2019-05-07 06:52:07 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-11-18 10:57:22 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### Instance Properties
 
							 
						 
					
						
							
								
									
										
										
										
											2019-05-07 06:52:07 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-11-18 10:57:22 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `nativeImage.isMacTemplateImage` _macOS_
 
							 
						 
					
						
							
								
									
										
										
										
											2019-05-07 06:52:07 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `boolean`  property that determines whether the image is considered a [template image ](https://developer.apple.com/documentation/appkit/nsimage/1520017-template ).
							 
						 
					
						
							
								
									
										
										
										
											2019-05-07 06:52:07 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Please note that this property only has an effect on macOS.