Add NativeImage support, clipboard image read/write.

This commit is contained in:
ThrDev
2020-04-26 19:21:29 -04:00
parent a619b6e5c9
commit 7daac2d04e
15 changed files with 522 additions and 92 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ElectronNET.API.Entities
{
public class ToBitmapOptions
{
public double ScaleFactor { get; set; } = 1.0d;
}
}