/// <inheritdoc/>
        public void Decode <TColor>(Image <TColor> image, Stream stream, IDecoderOptions options)
            where TColor : struct, IPixel <TColor>
        {
            IGifDecoderOptions gifOptions = GifDecoderOptions.Create(options);

            this.Decode(image, stream, gifOptions);
        }
Exemple #2
0
        /// <inheritdoc/>
        public Image <TPixel> Decode <TPixel>(Configuration configuration, Stream stream, IDecoderOptions options)

            where TPixel : struct, IPixel <TPixel>
        {
            IGifDecoderOptions gifOptions = GifDecoderOptions.Create(options);

            return(this.Decode <TPixel>(configuration, stream, gifOptions));
        }