C# 클래스 FluxJpeg.Core.JpegQuantizationTable

파일 보기 프로젝트 열기: prepare/HTML-Renderer

공개 프로퍼티들

프로퍼티 타입 설명
K1Div2Luminance JpegQuantizationTable
K1Luminance JpegQuantizationTable
K2Chrominance JpegQuantizationTable
K2Div2Chrominance JpegQuantizationTable

공개 메소드들

메소드 설명
JpegQuantizationTable ( int table ) : System

Construct a new JPEG quantization table. A copy is created of the table argument.

getScaledInstance ( float scaleFactor, bool forceBaseline ) : JpegQuantizationTable

Retrieve a copy of this JPEG quantization table with every value scaled by the given scale factor, and clamped from 1 to 255

비공개 메소드들

메소드 설명
JpegQuantizationTable ( int table, bool copy ) : System

Private constructor that avoids unnecessary copying and argument checking.

checkTable ( int table ) : int[]

메소드 상세

JpegQuantizationTable() 공개 메소드

Construct a new JPEG quantization table. A copy is created of the table argument.
public JpegQuantizationTable ( int table ) : System
table int The 64-element value table, stored in natural order
리턴 System

getScaledInstance() 공개 메소드

Retrieve a copy of this JPEG quantization table with every value scaled by the given scale factor, and clamped from 1 to 255
public getScaledInstance ( float scaleFactor, bool forceBaseline ) : JpegQuantizationTable
scaleFactor float the factor by which to scale this table
forceBaseline bool clamp scaled values to a maximum of 255 if baseline or from 1 to 32767 otherwise.
리턴 JpegQuantizationTable

프로퍼티 상세

K1Div2Luminance 공개적으로 정적으로 프로퍼티

The standard JPEG luminance quantization table, scaled by one-half. Values are stored in natural order.
public static JpegQuantizationTable,FluxJpeg.Core K1Div2Luminance
리턴 JpegQuantizationTable

K1Luminance 공개적으로 정적으로 프로퍼티

The standard JPEG luminance quantization table. Values are stored in natural order.
public static JpegQuantizationTable,FluxJpeg.Core K1Luminance
리턴 JpegQuantizationTable

K2Chrominance 공개적으로 정적으로 프로퍼티

The standard JPEG chrominance quantization table. Values are stored in natural order.
public static JpegQuantizationTable,FluxJpeg.Core K2Chrominance
리턴 JpegQuantizationTable

K2Div2Chrominance 공개적으로 정적으로 프로퍼티

The standard JPEG chrominance quantization table, scaled by one-half. Values are stored in natural order.
public static JpegQuantizationTable,FluxJpeg.Core K2Div2Chrominance
리턴 JpegQuantizationTable