1234567891011121314 |
- using PixiEditor.DrawingApi.Core.Surface;
- using PixiEditor.DrawingApi.Core.Surface.ImageData;
- namespace PixiEditor.DrawingApi.Core.Bridge.Operations
- {
- public interface IImageOperations
- {
- public Image Snapshot(DrawingSurface drawingSurface);
- public void DisposeImage(Image image);
- public Image FromEncodedData(string path);
- public void GetColorShifts(ref int platformColorAlphaShift, ref int platformColorRedShift, ref int platformColorGreenShift, ref int platformColorBlueShift);
- public ImgData Encode(Image image);
- }
- }
|