IBitmapImplementation.cs 267 B

12345678910
  1. using System;
  2. using PixiEditor.DrawingApi.Core.Surface;
  3. namespace PixiEditor.DrawingApi.Core.Bridge.NativeObjectsImpl;
  4. public interface IBitmapImplementation
  5. {
  6. public void Dispose(IntPtr objectPointer);
  7. public Bitmap Decode(ReadOnlySpan<byte> buffer);
  8. }