check point
This commit is contained in:
14
framework/Inspectron.Camera/Image/IImage.cs
Normal file
14
framework/Inspectron.Camera/Image/IImage.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Drawing.Imaging;
|
||||
|
||||
namespace Inspectron.Camera.Image
|
||||
{
|
||||
public interface IImage:IDisposable
|
||||
{
|
||||
int Width { get; }
|
||||
int Height { get; }
|
||||
int Channels { get; }
|
||||
void Save(string path);
|
||||
System.Drawing.Bitmap Bitmap { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user