Add full NativeImage support for Electron.NET

This commit is contained in:
ThrDev
2020-05-06 19:05:21 -04:00
parent e295558258
commit 9b270755d0
14 changed files with 432 additions and 115 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ElectronNET.API.Entities
{
public class CreateFromBitmapOptions
{
public int? Width { get; set; }
public int? Height { get; set; }
public float ScaleFactor { get; set; } = 1.0f;
}
}