Show / Hide Table of Contents

Class jvirt_array<T>

JPEG virtual array.

Inheritance
System.Object
jvirt_array<T>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: BitMiracle.LibJpeg.Classic
Assembly: BitMiracle.LibJpeg.NET.dll
Syntax
public class jvirt_array<T>
Type Parameters
Name Description
T

The type of array's elements.

Remarks

You can't create virtual array manually. For creation use methods CreateSamplesArray(Int32, Int32) and CreateBlocksArray(Int32, Int32).

Properties

| Improve this Doc View Source

ErrorProcessor

Gets or sets the error processor.

Declaration
public jpeg_common_struct ErrorProcessor { get; set; }
Property Value
Type Description
jpeg_common_struct

The error processor.
Default value: null

Remarks

Uses only for calling ERREXIT(J_MESSAGE_CODE) on error.

Methods

| Improve this Doc View Source

Access(Int32, Int32)

Access the part of a virtual array.

Declaration
public T[][] Access(int startRow, int numberOfRows)
Parameters
Type Name Description
System.Int32 startRow

The first row in required block.

System.Int32 numberOfRows

The number of required rows.

Returns
Type Description
T[][]

The required part of virtual array.

  • Improve this Doc
  • View Source
Back to top Generated by DocFX