mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 17:59:17 +00:00
using modified exiv2-ql (QL-Win/exiv2@cf560437bb) to detect Exif; switch from NConvert to Magick.NET
This commit is contained in:
@@ -25,7 +25,7 @@ namespace QuickLook.Plugin.ImageViewer.AnimatedImage
|
||||
{
|
||||
internal abstract class AnimationProvider : IDisposable
|
||||
{
|
||||
protected AnimationProvider(string path, NConvert meta)
|
||||
protected AnimationProvider(string path, MetaProvider meta)
|
||||
{
|
||||
Path = path;
|
||||
Meta = meta;
|
||||
@@ -33,13 +33,13 @@ namespace QuickLook.Plugin.ImageViewer.AnimatedImage
|
||||
|
||||
public string Path { get; }
|
||||
|
||||
public NConvert Meta { get; }
|
||||
public MetaProvider Meta { get; }
|
||||
|
||||
public Int32AnimationUsingKeyFrames Animator { get; protected set; }
|
||||
|
||||
public abstract void Dispose();
|
||||
|
||||
public abstract Task<BitmapSource> GetThumbnail(Size size, Size fullSize);
|
||||
public abstract Task<BitmapSource> GetThumbnail(Size renderSize);
|
||||
|
||||
public abstract Task<BitmapSource> GetRenderedFrame(int index);
|
||||
}
|
||||
|
Reference in New Issue
Block a user