naps2/NAPS2.Images/IRenderableImage.cs
Ben Olden-Cooligan 0d92b9d7e1 Add ImageContext to ProcessedImage and Render extensions
This reduces the amount we need to pass around ImageContext. Will probably followup doing the same for IMemoryImage and transforms.
2022-08-30 09:07:27 -07:00

8 lines
179 B
C#

namespace NAPS2.Images;
public interface IRenderableImage
{
ImageContext ImageContext { get; }
IImageStorage Storage { get; }
TransformState TransformState { get; }
}