Show / Hide Table of Contents

Delegate jpeg_decompress_struct.jpeg_marker_parser_method

The delegate for application-supplied marker processing methods.

Namespace: BitMiracle.LibJpeg.Classic
Assembly: BitMiracle.LibJpeg.NET.dll
Syntax
public delegate bool jpeg_marker_parser_method(jpeg_decompress_struct cinfo);
Parameters
Type Name Description
jpeg_decompress_struct cinfo

Decompressor.

Returns
Type Description
System.Boolean

Return true to indicate success. false should be returned only if you are using a suspending data source and it tells you to suspend.

Remarks

Although the marker code is not explicitly passed, the routine can find it in the Unread_marker. At the time of call, the marker proper has been read from the data source module. The processor routine is responsible for reading the marker length word and the remaining parameter bytes, if any.

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