mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
865 B
29 lines
865 B
// <copyright file="JpegDecoder.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageSharp.Formats
|
|
{
|
|
using System;
|
|
using System.IO;
|
|
|
|
/// <summary>
|
|
/// Image decoder for generating an image out of a jpg stream.
|
|
/// </summary>
|
|
public class JpegDecoder : IImageDecoder
|
|
{
|
|
/// <inheritdoc/>
|
|
public void Decode<TColor>(Image<TColor> image, Stream stream, IDecoderOptions options)
|
|
where TColor : struct, IPixel<TColor>
|
|
{
|
|
Guard.NotNull(image, "image");
|
|
Guard.NotNull(stream, "stream");
|
|
|
|
using (JpegDecoderCore decoder = new JpegDecoderCore(options))
|
|
{
|
|
decoder.Decode(image, stream, false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|