// // Copyright © James South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageProcessor.Formats { /// /// Encapsulates a supported image format, providing means to encode and decode an image. /// public interface IImageFormat { /// /// Gets the image encoder for encoding an image from a stream. /// IImageEncoder Encoder { get; } /// /// Gets the image decoder for decoding an image from a stream. /// IImageDecoder Decoder { get; } } }