14 lines
290 B
C#
14 lines
290 B
C#
|
namespace Timelapse.Desktop;
|
||
|
using SixLabors.ImageSharp;
|
||
|
using SixLabors.ImageSharp.PixelFormats;
|
||
|
public class NewFrameEventArgs : EventArgs
|
||
|
{
|
||
|
public NewFrameEventArgs(Image<Rgb24> img)
|
||
|
{
|
||
|
Image=img;
|
||
|
|
||
|
}
|
||
|
|
||
|
public Image<Rgb24> Image {get;internal set;}
|
||
|
|
||
|
}
|