//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Formats.Jpg
{
///
/// Represents a single color component
///
internal struct Component
{
///
/// Gets or sets the horizontal sampling factor.
///
public int HorizontalFactor;
///
/// Gets or sets the vertical sampling factor.
///
public int VerticalFactor;
///
/// Gets or sets the identifier
///
public byte Identifier;
///
/// Gets or sets the quantization table destination selector.
///
public byte Selector;
}
}