14 lines
301 B
C#
14 lines
301 B
C#
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; }
|
|
}
|
|
} |