CodeGlyphX logo
CodeGlyphX

API Reference

Class

Pdf417Code

Namespace CodeGlyphX
Assembly CodeGlyphX
Modifiers static

Simple PDF417 helpers with fluent and static APIs.

Inheritance

  • Object
  • Pdf417Code

Examples


using CodeGlyphX;
Pdf417Code.Save("Document ID: 98765", "pdf417.png");
        

Methods

Ascii 3 overloads
public static String Ascii(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixAsciiRenderOptions options = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as ASCII from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions = null optionalposition: 2
Ascii(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions options) #

Renders PDF417 as ASCII.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions required
Ascii(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions options) #

Renders PDF417 as ASCII from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions required
public static String AsciiMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixAsciiRenderOptions options = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as ASCII.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions = null optionalposition: 3
Bmp 3 overloads
public static Byte[] Bmp(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as BMP from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Bmp(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as BMP.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Bmp(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as BMP from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] BmpMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as BMP.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Create 2 overloads
public static Pdf417Builder Create(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Pdf417Builder

Starts a fluent PDF417 builder for text payloads.

Parameters

text System.String requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Create(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Starts a fluent PDF417 builder for byte payloads.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static DecodeBatchResult<String> DecodeImageBatch(IEnumerable<Byte[]> images, ImageDecodeOptions options = null, CancellationToken cancellationToken = null) #
Returns: DecodeBatchResult<String>

Decodes a batch of PDF417 images with shared settings and aggregated diagnostics.

Parameters

images System.Collections.Generic.IEnumerable{System.Byte[]} requiredposition: 0
options CodeGlyphX.ImageDecodeOptions = null optionalposition: 1
cancellationToken System.Threading.CancellationToken = null optionalposition: 2
DecodeImageResult 3 overloads
public static DecodeResult<String> DecodeImageResult(Stream stream, ImageDecodeOptions options = null, CancellationToken cancellationToken = null) #
Returns: DecodeResult<String>

Decodes a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) and returns diagnostics.

Parameters

image System.Byte[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions = null optionalposition: 1
cancellationToken System.Threading.CancellationToken = null optionalposition: 2
DecodeImageResult(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken) #

Decodes a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) in a span and returns diagnostics.

Parameters

image System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
DecodeImageResult(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken) #

Decodes a PDF417 symbol from an image stream (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) and returns diagnostics.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
DecodePng 2 overloads
public static String DecodePng(Stream stream) #
Returns: String

Decodes a PDF417 symbol from PNG bytes.

Parameters

png System.Byte[] requiredposition: 0
DecodePng(System.IO.Stream stream) #

Decodes a PDF417 symbol from a PNG stream.

Parameters

stream System.IO.Stream required
public static String DecodePngFile(String path) #
Returns: String

Decodes a PDF417 symbol from a PNG file.

Parameters

path System.String requiredposition: 0
public static BitMatrix Encode(String text, Pdf417EncodeOptions options = null) #
Returns: BitMatrix

Encodes a text payload as PDF417.

Parameters

text System.String requiredposition: 0
options CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
EncodeBytes 2 overloads
public static BitMatrix EncodeBytes(ReadOnlySpan<Byte> data, Pdf417EncodeOptions options = null) #
Returns: BitMatrix

Encodes a byte payload as PDF417.

Parameters

data System.Byte[] requiredposition: 0
options CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
EncodeBytes(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Pdf417.Pdf417EncodeOptions options) #

Encodes a byte payload as PDF417.

Parameters

data System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.Pdf417.Pdf417EncodeOptions required
public static BitMatrix EncodeMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions options = null) #
Returns: BitMatrix

Encodes a Macro PDF417 payload.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
options CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
Eps 3 overloads
public static String Eps(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as EPS from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
Payload bytes.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
Encoding options.
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 3
Vector or raster output.
Eps(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Renders PDF417 as EPS.

Parameters

text System.String required
Input text.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
Eps(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Renders PDF417 as EPS from bytes.

Parameters

data System.Byte[] required
Payload bytes.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
public static String EpsMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as EPS.

Parameters

text System.String requiredposition: 0
Input text.
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
Macro PDF417 metadata.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
Encoding options.
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
Vector or raster output.
Html 3 overloads
public static String Html(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as HTML from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Html(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as HTML.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Html(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as HTML from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static String HtmlMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as HTML.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Ico 3 overloads
public static Byte[] Ico(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as ICO from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Ico(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as ICO.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Ico(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as ICO.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] IcoMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as ICO.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Jpeg 3 overloads
public static Byte[] Jpeg(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as JPEG from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Jpeg(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as JPEG.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Jpeg(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as JPEG from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] JpegMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as JPEG.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Pam 3 overloads
public static Byte[] Pam(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as PAM from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Pam(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PAM.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Pam(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PAM.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] PamMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as PAM.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Pbm 3 overloads
public static Byte[] Pbm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as PBM from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Pbm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PBM.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Pbm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PBM.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] PbmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as PBM.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Pdf 3 overloads
public static Byte[] Pdf(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as PDF from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
Payload bytes.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
Encoding options.
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 3
Vector or raster output.
Pdf(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Renders PDF417 as PDF.

Parameters

text System.String required
Input text.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
Pdf(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Renders PDF417 as PDF from bytes.

Parameters

data System.Byte[] required
Payload bytes.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
public static Byte[] PdfMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as PDF.

Parameters

text System.String requiredposition: 0
Input text.
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
Macro PDF417 metadata.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
Encoding options.
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
Vector or raster output.
Pgm 3 overloads
public static Byte[] Pgm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as PGM from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Pgm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PGM.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Pgm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PGM.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] PgmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as PGM.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Png 3 overloads
public static Byte[] Png(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as PNG from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Png(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PNG.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Png(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PNG from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] PngMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as PNG.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Ppm 3 overloads
public static Byte[] Ppm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as PPM from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Ppm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PPM.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Ppm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as PPM.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] PpmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as PPM.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Render 3 overloads
public static RenderedOutput Render(ReadOnlySpan<Byte> data, OutputFormat format, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #
Returns: RenderedOutput

Renders a PDF417 payload to the requested output format.

Parameters

text System.String requiredposition: 0
format CodeGlyphX.Rendering.OutputFormat requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
extras CodeGlyphX.Rendering.RenderExtras = null optionalposition: 4
Render(System.Byte[] data, CodeGlyphX.Rendering.OutputFormat format, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderExtras extras) #

Renders a PDF417 byte payload to the requested output format.

Parameters

data System.Byte[] required
format CodeGlyphX.Rendering.OutputFormat required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
extras CodeGlyphX.Rendering.RenderExtras required
Render(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Rendering.OutputFormat format, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderExtras extras) #

Renders a PDF417 byte payload to the requested output format.

Parameters

data System.ReadOnlySpan{System.Byte} required
format CodeGlyphX.Rendering.OutputFormat required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
extras CodeGlyphX.Rendering.RenderExtras required
public static RenderedOutput RenderMacro(String text, Pdf417MacroOptions macro, OutputFormat format, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #
Returns: RenderedOutput

Renders a Macro PDF417 payload to the requested output format.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
format CodeGlyphX.Rendering.OutputFormat requiredposition: 2
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 3
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 4
extras CodeGlyphX.Rendering.RenderExtras = null optionalposition: 5
Save 6 overloads
public static String Save(Byte[] data, String path, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #
Returns: String

Saves PDF417 to a file for byte payloads based on extension. Defaults to PNG when no extension is provided.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
title System.String = null optionalposition: 4
Save(System.ReadOnlySpan{System.Byte} data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderExtras extras) #

Saves PDF417 to a file for byte payloads based on extension. Defaults to PNG when no extension is provided.

Parameters

data System.ReadOnlySpan{System.Byte} required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
extras CodeGlyphX.Rendering.RenderExtras required
Save(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves PDF417 to a file based on extension. Defaults to PNG when no extension is provided.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
title System.String required
Save(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderExtras extras) #

Saves PDF417 to a file based on extension. Defaults to PNG when no extension is provided.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
extras CodeGlyphX.Rendering.RenderExtras required
Save(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves PDF417 to a file for byte payloads based on extension. Defaults to PNG when no extension is provided.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
title System.String required
Save(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderExtras extras) #

Saves PDF417 to a file for byte payloads based on extension. Defaults to PNG when no extension is provided.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
extras CodeGlyphX.Rendering.RenderExtras required
SaveBmp 6 overloads
public static Void SaveBmp(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 BMP to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveBmp(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 BMP to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveBmp(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 BMP to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveBmp(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 BMP to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveBmp(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 BMP to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveBmp(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 BMP to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveEps 6 overloads
public static Void SaveEps(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 EPS to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
Payload bytes.
path System.String requiredposition: 1
Output file path.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
Encoding options.
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
Vector or raster output.
SaveEps(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 EPS to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
Payload bytes.
stream System.IO.Stream required
Destination stream.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SaveEps(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 EPS to a file.

Parameters

text System.String required
Input text.
path System.String required
Output file path.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SaveEps(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 EPS to a file for byte payloads.

Parameters

data System.Byte[] required
Payload bytes.
path System.String required
Output file path.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SaveEps(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 EPS to a stream.

Parameters

text System.String required
Input text.
stream System.IO.Stream required
Destination stream.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SaveEps(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 EPS to a stream for byte payloads.

Parameters

data System.Byte[] required
Payload bytes.
stream System.IO.Stream required
Destination stream.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SaveHtml 6 overloads
public static Void SaveHtml(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, String title = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 HTML to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
title System.String = null optionalposition: 4
SaveHtml(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves PDF417 HTML to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
title System.String required
SaveHtml(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves PDF417 HTML to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
title System.String required
SaveHtml(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves PDF417 HTML to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
title System.String required
SaveHtml(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves PDF417 HTML to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
title System.String required
SaveHtml(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves PDF417 HTML to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
title System.String required
SaveIco 6 overloads
public static Void SaveIco(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 ICO to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveIco(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 ICO to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveIco(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 ICO to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveIco(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 ICO to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveIco(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 ICO to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveIco(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 ICO to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveJpeg 6 overloads
public static Void SaveJpeg(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 JPEG to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveJpeg(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 JPEG to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveJpeg(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 JPEG to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveJpeg(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 JPEG to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveJpeg(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 JPEG to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveJpeg(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 JPEG to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static String SaveMacro(String text, Pdf417MacroOptions macro, String path, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #
Returns: String

Saves Macro PDF417 to a file based on extension. Defaults to PNG when no extension is provided.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
path System.String requiredposition: 2
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 3
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 4
extras CodeGlyphX.Rendering.RenderExtras = null optionalposition: 5
SavePam 6 overloads
public static Void SavePam(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 PAM to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePam(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PAM to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePam(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PAM to a file for text payloads.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePam(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PAM to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePam(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PAM to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePam(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PAM to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePbm 6 overloads
public static Void SavePbm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 PBM to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePbm(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PBM to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePbm(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PBM to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePbm(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PBM to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePbm(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PBM to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePbm(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PBM to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePdf 6 overloads
public static Void SavePdf(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 PDF to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
Payload bytes.
path System.String requiredposition: 1
Output file path.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
Encoding options.
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
Vector or raster output.
SavePdf(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 PDF to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
Payload bytes.
stream System.IO.Stream required
Destination stream.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SavePdf(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 PDF to a file.

Parameters

text System.String required
Input text.
path System.String required
Output file path.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SavePdf(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 PDF to a file for byte payloads.

Parameters

data System.Byte[] required
Payload bytes.
path System.String required
Output file path.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SavePdf(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 PDF to a stream.

Parameters

text System.String required
Input text.
stream System.IO.Stream required
Destination stream.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SavePdf(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves PDF417 PDF to a stream for byte payloads.

Parameters

data System.Byte[] required
Payload bytes.
stream System.IO.Stream required
Destination stream.
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
Encoding options.
renderOptions CodeGlyphX.MatrixOptions required
Rendering options.
renderMode CodeGlyphX.Rendering.RenderMode required
Vector or raster output.
SavePgm 6 overloads
public static Void SavePgm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 PGM to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePgm(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PGM to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePgm(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PGM to a file for text payloads.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePgm(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PGM to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePgm(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PGM to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePgm(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PGM to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePng 6 overloads
public static Void SavePng(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 PNG to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePng(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PNG to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePng(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PNG to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePng(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PNG to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePng(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PNG to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePng(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PNG to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePpm 6 overloads
public static Void SavePpm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 PPM to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePpm(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PPM to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePpm(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PPM to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePpm(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PPM to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePpm(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PPM to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePpm(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 PPM to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvg 6 overloads
public static Void SaveSvg(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 SVG to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveSvg(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVG to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvg(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVG to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvg(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVG to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvg(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVG to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvg(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVG to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvgz 6 overloads
public static Void SaveSvgz(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 SVGZ to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveSvgz(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVGZ to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvgz(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVGZ to a file for text payloads.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvgz(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVGZ to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvgz(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVGZ to a stream for text payloads.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveSvgz(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 SVGZ to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveTga 6 overloads
public static Void SaveTga(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 TGA to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveTga(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 TGA to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveTga(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 TGA to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveTga(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 TGA to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveTga(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 TGA to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveTga(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 TGA to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveWebp 6 overloads
public static Void SaveWebp(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 WebP to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveWebp(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 WebP to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveWebp(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 WebP to a file.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveWebp(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 WebP to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveWebp(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 WebP to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveWebp(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 WebP to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXbm 6 overloads
public static Void SaveXbm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 XBM to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveXbm(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XBM to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXbm(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XBM to a file for text payloads.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXbm(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XBM to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXbm(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XBM to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXbm(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XBM to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXpm 6 overloads
public static Void SaveXpm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves PDF417 XPM to a file for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveXpm(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XPM to a stream for byte payloads.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXpm(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XPM to a file for text payloads.

Parameters

text System.String required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXpm(System.Byte[] data, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XPM to a file for byte payloads.

Parameters

data System.Byte[] required
path System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXpm(System.String text, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XPM to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SaveXpm(System.Byte[] data, System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves PDF417 XPM to a stream for byte payloads.

Parameters

data System.Byte[] required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Svg 3 overloads
public static String Svg(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as SVG from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Svg(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as SVG.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Svg(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as SVG from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static String SvgMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as SVG.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Svgz 3 overloads
public static Byte[] Svgz(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as SVGZ from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Svgz(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as SVGZ.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Svgz(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as SVGZ from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] SvgzMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as SVGZ.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Tga 3 overloads
public static Byte[] Tga(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as TGA from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Tga(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as TGA.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Tga(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as TGA.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static Byte[] TgaMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as TGA.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
TryDecodeAllImage 6 overloads
public static Boolean TryDecodeAllImage(Stream stream, out String[] texts) #
Returns: Boolean

Attempts to decode all PDF417 symbols from common image formats.

Parameters

image System.Byte[] requiredposition: 0
texts System.String[]@ requiredposition: 1
public static Boolean TryDecodeAllImage(Stream stream, ImageDecodeOptions options, out String[] texts) #
Returns: Boolean

Attempts to decode all PDF417 symbols from common image formats with image decode options.

Parameters

image System.Byte[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
texts System.String[]@ requiredposition: 2
public static Boolean TryDecodeAllImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String[] texts) #
Returns: Boolean

Attempts to decode all PDF417 symbols from common image formats with image decode options, with cancellation.

Parameters

image System.Byte[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
texts System.String[]@ requiredposition: 3
TryDecodeAllImage(System.IO.Stream stream, System.String[]@ texts) #

Attempts to decode all PDF417 symbols from an image stream.

Parameters

stream System.IO.Stream required
texts System.String[]@ required
TryDecodeAllImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.String[]@ texts) #

Attempts to decode all PDF417 symbols from an image stream with image decode options.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
texts System.String[]@ required
TryDecodeAllImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String[]@ texts) #

Attempts to decode all PDF417 symbols from an image stream with image decode options, with cancellation.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
texts System.String[]@ required
TryDecodeImage 29 overloads
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA).

Parameters

image System.Byte[] requiredposition: 0
text System.String@ requiredposition: 1
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA), with cancellation.

Parameters

image System.Byte[] requiredposition: 0
cancellationToken System.Threading.CancellationToken requiredposition: 1
text System.String@ requiredposition: 2
TryDecodeImage(System.Byte[] image, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #

Attempts to decode a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) with image decode options.

Parameters

image System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) with image decode options, with cancellation.

Parameters

image System.Byte[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
TryDecodeImage(System.Byte[] image, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from common image formats, with diagnostics.

Parameters

image System.Byte[] required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodeImage(System.Byte[] image, CodeGlyphX.ImageDecodeOptions options, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from common image formats with image decode options, with diagnostics.

Parameters

image System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #
Returns: Boolean

Attempts to decode a PDF417 symbol from common image formats with image decode options, cancellation, and diagnostics.

Parameters

image System.Byte[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ requiredposition: 4
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from common image formats in a span, with diagnostics.

Parameters

image System.ReadOnlySpan{System.Byte} required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from common image formats in a span with image decode options, with diagnostics.

Parameters

image System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from common image formats in a span with image decode options, cancellation, and diagnostics.

Parameters

image System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, System.String@ text) #

Attempts to decode a PDF417 symbol from common image formats in a span.

Parameters

image System.ReadOnlySpan{System.Byte} required
text System.String@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from common image formats in a span, with cancellation.

Parameters

image System.ReadOnlySpan{System.Byte} required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #

Attempts to decode a PDF417 symbol from common image formats in a span with image decode options.

Parameters

image System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from common image formats in a span with image decode options, with cancellation.

Parameters

image System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodeImage(System.IO.Stream stream, System.String@ text) #

Attempts to decode a PDF417 symbol from an image stream (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA).

Parameters

stream System.IO.Stream required
text System.String@ required
TryDecodeImage(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from an image stream (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA), with cancellation.

Parameters

stream System.IO.Stream required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodeImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #

Attempts to decode a PDF417 symbol from an image stream (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) with image decode options.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
TryDecodeImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from an image stream (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) with image decode options, with cancellation.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodeImage(System.IO.Stream stream, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from an image stream, with diagnostics.

Parameters

stream System.IO.Stream required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodeImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from an image stream with image decode options, with diagnostics.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodeImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from an image stream with image decode options, cancellation, and diagnostics.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodeImage(System.Byte[] image, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA).

Parameters

image System.Byte[] required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodeImage(System.Byte[] image, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA), with cancellation.

Parameters

image System.Byte[] required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodeImage(System.Byte[] image, CodeGlyphX.ImageDecodeOptions options, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) with image decode options.

Parameters

image System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodeImage(System.Byte[] image, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) with image decode options, with cancellation.

Parameters

image System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) in a span.

Parameters

image System.ReadOnlySpan{System.Byte} required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) in a span, with cancellation.

Parameters

image System.ReadOnlySpan{System.Byte} required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) in a span with image decode options.

Parameters

image System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) in a span with image decode options, with cancellation.

Parameters

image System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng 32 overloads
public static Boolean TryDecodePng(Stream stream, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from PNG bytes.

Parameters

png System.Byte[] requiredposition: 0
text System.String@ requiredposition: 1
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from PNG bytes, with cancellation.

Parameters

png System.Byte[] requiredposition: 0
cancellationToken System.Threading.CancellationToken requiredposition: 1
text System.String@ requiredposition: 2
TryDecodePng(System.Byte[] png, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #

Attempts to decode a PDF417 symbol from PNG bytes with image decode options.

Parameters

png System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from PNG bytes with image decode options, with cancellation.

Parameters

png System.Byte[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
TryDecodePng(System.ReadOnlySpan{System.Byte} png, System.String@ text) #

Attempts to decode a PDF417 symbol from PNG bytes in a span.

Parameters

png System.ReadOnlySpan{System.Byte} required
text System.String@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from PNG bytes in a span, with cancellation.

Parameters

png System.ReadOnlySpan{System.Byte} required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #

Attempts to decode a PDF417 symbol from PNG bytes in a span with image decode options.

Parameters

png System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from PNG bytes in a span with image decode options, with cancellation.

Parameters

png System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodePng(System.Byte[] png, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from PNG bytes, with diagnostics.

Parameters

png System.Byte[] required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePng(System.Byte[] png, CodeGlyphX.ImageDecodeOptions options, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from PNG bytes with image decode options, with diagnostics.

Parameters

png System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #
Returns: Boolean

Attempts to decode a PDF417 symbol from PNG bytes with image decode options, cancellation, and diagnostics.

Parameters

png System.Byte[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ requiredposition: 4
TryDecodePng(System.ReadOnlySpan{System.Byte} png, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from PNG bytes in a span, with diagnostics.

Parameters

png System.ReadOnlySpan{System.Byte} required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.ImageDecodeOptions options, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from PNG bytes in a span with image decode options, with diagnostics.

Parameters

png System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from PNG bytes in a span with image decode options, cancellation, and diagnostics.

Parameters

png System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePng(System.IO.Stream stream, System.String@ text) #

Attempts to decode a PDF417 symbol from a PNG stream.

Parameters

stream System.IO.Stream required
text System.String@ required
TryDecodePng(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #

Attempts to decode a PDF417 symbol from a PNG stream with image decode options.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
TryDecodePng(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from a PNG stream with image decode options, with cancellation.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodePng(System.IO.Stream stream, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from a PNG stream, with diagnostics.

Parameters

stream System.IO.Stream required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePng(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from a PNG stream with image decode options, with diagnostics.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePng(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from a PNG stream with image decode options, cancellation, and diagnostics.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePng(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode a PDF417 symbol from a PNG stream, with cancellation.

Parameters

stream System.IO.Stream required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodePng(System.Byte[] png, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes.

Parameters

png System.Byte[] required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.Byte[] png, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes, with cancellation.

Parameters

png System.Byte[] required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.Byte[] png, CodeGlyphX.ImageDecodeOptions options, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes with image decode options.

Parameters

png System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.Byte[] png, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes with image decode options, with cancellation.

Parameters

png System.Byte[] required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes in a span.

Parameters

png System.ReadOnlySpan{System.Byte} required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes in a span, with cancellation.

Parameters

png System.ReadOnlySpan{System.Byte} required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.ImageDecodeOptions options, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes in a span with image decode options.

Parameters

png System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from PNG bytes in a span with image decode options, with cancellation.

Parameters

png System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.IO.Stream stream, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from a PNG stream.

Parameters

stream System.IO.Stream required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from a PNG stream with image decode options.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePng(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from a PNG stream with image decode options, with cancellation.

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePngFile 11 overloads
public static Boolean TryDecodePngFile(String path, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from a PNG file.

Parameters

path System.String requiredposition: 0
text System.String@ requiredposition: 1
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from a PNG file, with cancellation.

Parameters

path System.String requiredposition: 0
cancellationToken System.Threading.CancellationToken requiredposition: 1
text System.String@ requiredposition: 2
TryDecodePngFile(System.String path, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #

Attempts to decode a PDF417 symbol from a PNG file with image decode options.

Parameters

path System.String required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #
Returns: Boolean

Attempts to decode a PDF417 symbol from a PNG file with image decode options, with cancellation.

Parameters

path System.String requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
TryDecodePngFile(System.String path, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from a PNG file, with diagnostics.

Parameters

path System.String required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
TryDecodePngFile(System.String path, CodeGlyphX.ImageDecodeOptions options, System.String@ text, CodeGlyphX.Pdf417DecodeDiagnostics@ diagnostics) #

Attempts to decode a PDF417 symbol from a PNG file with image decode options, with diagnostics.

Parameters

path System.String required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ required
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #
Returns: Boolean

Attempts to decode a PDF417 symbol from a PNG file with image decode options, cancellation, and diagnostics.

Parameters

path System.String requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@ requiredposition: 4
TryDecodePngFile(System.String path, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from a PNG file.

Parameters

path System.String required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePngFile(System.String path, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from a PNG file, with cancellation.

Parameters

path System.String required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePngFile(System.String path, CodeGlyphX.ImageDecodeOptions options, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from a PNG file with image decode options.

Parameters

path System.String required
options CodeGlyphX.ImageDecodeOptions required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
TryDecodePngFile(System.String path, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #

Attempts to decode a Macro PDF417 symbol from a PNG file with image decode options, with cancellation.

Parameters

path System.String required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
decoded CodeGlyphX.Pdf417.Pdf417Decoded@ required
Webp 3 overloads
public static Byte[] Webp(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as WebP from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Webp(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as WebP.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Webp(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as WebP from bytes.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Xbm 3 overloads
public static String Xbm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as XBM from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Xbm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as XBM.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Xbm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as XBM.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static String XbmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as XBM.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
Xpm 3 overloads
public static String Xpm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders PDF417 as XPM from bytes.

Parameters

data System.ReadOnlySpan{System.Byte} requiredposition: 0
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
Xpm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as XPM.

Parameters

text System.String required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Xpm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Renders PDF417 as XPM.

Parameters

data System.Byte[] required
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static String XpmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Macro PDF417 as XPM.

Parameters

text System.String requiredposition: 0
macro CodeGlyphX.Pdf417.Pdf417MacroOptions requiredposition: 1
encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3