namespace ElectronNET.API.Entities
{
///
///
///
/// Up-to-date with Electron API 39.2
public class CreateFromBitmapOptions
{
///
/// Gets or sets the width in pixels. Required for nativeImage.createFromBitmap(buffer, options).
///
public int? Width { get; set; }
///
/// Gets or sets the height in pixels. Required for nativeImage.createFromBitmap(buffer, options).
///
public int? Height { get; set; }
///
/// Gets or sets the image scale factor. Optional, defaults to 1.0.
///
public float ScaleFactor { get; set; } = 1.0f;
}
}