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.
21 lines
493 B
21 lines
493 B
using System.Collections.Generic;
|
|
using SixLabors.Primitives;
|
|
|
|
namespace SixLabors.ImageSharp.Formats.Jpeg.Common
|
|
{
|
|
internal interface IRawJpegData
|
|
{
|
|
Size ImageSizeInPixels { get; }
|
|
|
|
Size ImageSizeInBlocks { get; }
|
|
|
|
int ComponentCount { get; }
|
|
|
|
IEnumerable<IJpegComponent> Components { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the quantization tables, in zigzag order.
|
|
/// </summary>
|
|
Block8x8F[] QuantizationTables { get; }
|
|
}
|
|
}
|