123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using MediaBrowser.Controller.Drawing;
- using MediaBrowser.Model.Drawing;
- namespace Emby.Drawing
- {
- public class NullImageEncoder : IImageEncoder
- {
- public string[] SupportedInputFormats
- {
- get
- {
- return new[]
- {
- "png",
- "jpeg",
- "jpg"
- };
- }
- }
- public ImageFormat[] SupportedOutputFormats
- {
- get
- {
- return new[] { ImageFormat.Jpg, ImageFormat.Png };
- }
- }
- public void CropWhiteSpace(string inputPath, string outputPath)
- {
- throw new NotImplementedException();
- }
- public string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, int quality, ImageProcessingOptions options, ImageFormat selectedOutputFormat)
- {
- throw new NotImplementedException();
- }
- public void CreateImageCollage(ImageCollageOptions options)
- {
- throw new NotImplementedException();
- }
- public string Name
- {
- get { return "Null Image Encoder"; }
- }
- public bool SupportsImageCollageCreation
- {
- get { return false; }
- }
- public bool SupportsImageEncoding
- {
- get { return false; }
- }
- public ImageSize GetImageSize(string path)
- {
- throw new NotImplementedException();
- }
- public void Dispose()
- {
- }
- }
- }
|