Show / Hide Table of Contents

Class jpeg_destination_mgr

Data destination object for compression.

Inheritance
System.Object
jpeg_destination_mgr
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 abstract class jpeg_destination_mgr

Properties

| Improve this Doc View Source

freeInBuffer

Gets the number of free bytes in buffer.

Declaration
protected int freeInBuffer { get; }
Property Value
Type Description
System.Int32

The number of free bytes in buffer.

Methods

| Improve this Doc View Source

emit_byte(Int32)

Emits a byte.

Declaration
public virtual bool emit_byte(int val)
Parameters
Type Name Description
System.Int32 val

The byte value.

Returns
Type Description
System.Boolean

true if operation succeed; otherwise, false

| Improve this Doc View Source

empty_output_buffer()

Empties output buffer.

Declaration
public abstract bool empty_output_buffer()
Returns
Type Description
System.Boolean

true if operation succeed; otherwise, false

| Improve this Doc View Source

init_destination()

Initializes this instance.

Declaration
public abstract void init_destination()
| Improve this Doc View Source

initInternalBuffer(Byte[], Int32)

Initializes the internal buffer.

Declaration
protected void initInternalBuffer(byte[] buffer, int offset)
Parameters
Type Name Description
System.Byte[] buffer

The buffer.

System.Int32 offset

The offset.

| Improve this Doc View Source

term_destination()

Term_destinations this instance.

Declaration
public abstract void term_destination()
  • Improve this Doc
  • View Source
Back to top Generated by DocFX