API Reference
Pdf417Code
Simple PDF417 helpers with fluent and static APIs.
Inheritance
- Object
- Pdf417Code
Examples
using CodeGlyphX;
Pdf417Code.Save("Document ID: 98765", "pdf417.png");
Methods
public static String Ascii(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixAsciiRenderOptions options = null) #StringObsolete("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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions = null
Ascii(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions options) #Renders PDF417 as ASCII.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions
Ascii(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions options) #Renders PDF417 as ASCII from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions
public static String AsciiMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixAsciiRenderOptions options = null) #StringObsolete("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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- options CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions = null
public static Byte[] Bmp(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Bmp(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as BMP.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Bmp(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as BMP from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] BmpMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Pdf417Builder Create(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Pdf417BuilderStarts a fluent PDF417 builder for text payloads.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Create(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Starts a fluent PDF417 builder for byte payloads.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static DecodeBatchResult<String> DecodeImageBatch(IEnumerable<Byte[]> images, ImageDecodeOptions options = null, CancellationToken cancellationToken = null) #DecodeBatchResult<String>Decodes a batch of PDF417 images with shared settings and aggregated diagnostics.
Parameters
- images System.Collections.Generic.IEnumerable{System.Byte[]}
- options CodeGlyphX.ImageDecodeOptions = null
- cancellationToken System.Threading.CancellationToken = null
public static DecodeResult<String> DecodeImageResult(Stream stream, ImageDecodeOptions options = null, CancellationToken cancellationToken = null) #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[]
- options CodeGlyphX.ImageDecodeOptions = null
- cancellationToken System.Threading.CancellationToken = null
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
public static String DecodePngFile(String path) #StringDecodes a PDF417 symbol from a PNG file.
Parameters
- path System.String
public static BitMatrix Encode(String text, Pdf417EncodeOptions options = null) #BitMatrixEncodes a text payload as PDF417.
Parameters
- text System.String
- options CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
public static BitMatrix EncodeBytes(ReadOnlySpan<Byte> data, Pdf417EncodeOptions options = null) #BitMatrixEncodes a byte payload as PDF417.
Parameters
- data System.Byte[]
- options CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
EncodeBytes(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Pdf417.Pdf417EncodeOptions options) #Encodes a byte payload as PDF417.
Parameters
- data System.ReadOnlySpan{System.Byte}
- options CodeGlyphX.Pdf417.Pdf417EncodeOptions
public static BitMatrix EncodeMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions options = null) #BitMatrixEncodes a Macro PDF417 payload.
Parameters
- text System.String
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- options CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
public static String Eps(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #StringObsolete("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}
- Payload bytes.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions = null
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
- 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
- Input text.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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[]
- Payload bytes.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- Vector or raster output.
public static String EpsMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #StringObsolete("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
- Input text.
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- Macro PDF417 metadata.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions = null
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
- Vector or raster output.
public static String Html(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Html(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as HTML.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Html(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as HTML from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String HtmlMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Ico(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Ico(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as ICO.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Ico(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as ICO.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] IcoMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Jpeg(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Jpeg(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as JPEG.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Jpeg(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as JPEG from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] JpegMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Pam(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Pam(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PAM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Pam(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PAM.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] PamMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Pbm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Pbm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PBM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Pbm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PBM.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] PbmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Pdf(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #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}
- Payload bytes.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions = null
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
- 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
- Input text.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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[]
- Payload bytes.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- Vector or raster output.
public static Byte[] PdfMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #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
- Input text.
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- Macro PDF417 metadata.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions = null
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
- Vector or raster output.
public static Byte[] Pgm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Pgm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PGM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Pgm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PGM.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] PgmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Png(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Png(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PNG.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Png(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PNG from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] PngMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Ppm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Ppm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PPM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Ppm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as PPM.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] PpmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static RenderedOutput Render(ReadOnlySpan<Byte> data, OutputFormat format, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #RenderedOutputRenders a PDF417 payload to the requested output format.
Parameters
- text System.String
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
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[]
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- extras CodeGlyphX.Rendering.RenderExtras
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}
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- extras CodeGlyphX.Rendering.RenderExtras
public static RenderedOutput RenderMacro(String text, Pdf417MacroOptions macro, OutputFormat format, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #RenderedOutputRenders a Macro PDF417 payload to the requested output format.
Parameters
- text System.String
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static String Save(Byte[] data, String path, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #StringSaves PDF417 to a file for byte payloads based on extension. Defaults to PNG when no extension is provided.
Parameters
- data System.ReadOnlySpan{System.Byte}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- title System.String = null
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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- extras CodeGlyphX.Rendering.RenderExtras
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- extras CodeGlyphX.Rendering.RenderExtras
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- extras CodeGlyphX.Rendering.RenderExtras
public static Void SaveBmp(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SaveBmp(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 BMP to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveEps(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #VoidObsolete("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}
- Payload bytes.
- path System.String
- Output file path.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions = null
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
- 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}
- Payload bytes.
- stream System.IO.Stream
- Destination stream.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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
- Input text.
- path System.String
- Output file path.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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[]
- Payload bytes.
- path System.String
- Output file path.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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
- Input text.
- stream System.IO.Stream
- Destination stream.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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[]
- Payload bytes.
- stream System.IO.Stream
- Destination stream.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- Vector or raster output.
public static Void SaveHtml(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, String title = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- title System.String = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
public static Void SaveIco(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SaveIco(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 ICO to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveJpeg(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SaveJpeg(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 JPEG to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String SaveMacro(String text, Pdf417MacroOptions macro, String path, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #StringSaves Macro PDF417 to a file based on extension. Defaults to PNG when no extension is provided.
Parameters
- text System.String
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static Void SavePam(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePbm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SavePbm(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 PBM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePdf(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #VoidObsolete("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}
- Payload bytes.
- path System.String
- Output file path.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions = null
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
- 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}
- Payload bytes.
- stream System.IO.Stream
- Destination stream.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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
- Input text.
- path System.String
- Output file path.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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[]
- Payload bytes.
- path System.String
- Output file path.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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
- Input text.
- stream System.IO.Stream
- Destination stream.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- 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[]
- Payload bytes.
- stream System.IO.Stream
- Destination stream.
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- Encoding options.
- renderOptions CodeGlyphX.MatrixOptions
- Rendering options.
- renderMode CodeGlyphX.Rendering.RenderMode
- Vector or raster output.
public static Void SavePgm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePng(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SavePng(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 PNG to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePpm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SavePpm(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 PPM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveSvg(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SaveSvg(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 SVG to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveSvgz(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveTga(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SaveTga(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 TGA to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveWebp(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
SaveWebp(System.String text, System.String path, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Saves PDF417 WebP to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveXbm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveXpm(Byte[] data, Stream stream, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("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}
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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[]
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String Svg(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Svg(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as SVG.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Svg(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as SVG from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String SvgMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Svgz(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Svgz(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as SVGZ.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Svgz(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as SVGZ from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] SvgzMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Byte[] Tga(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Tga(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as TGA.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Tga(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as TGA.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] TgaMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static Boolean TryDecodeAllImage(Stream stream, out String[] texts) #BooleanAttempts to decode all PDF417 symbols from common image formats.
Parameters
- image System.Byte[]
- texts System.String[]@
public static Boolean TryDecodeAllImage(Stream stream, ImageDecodeOptions options, out String[] texts) #BooleanAttempts to decode all PDF417 symbols from common image formats with image decode options.
Parameters
- image System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- texts System.String[]@
public static Boolean TryDecodeAllImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String[] texts) #BooleanAttempts to decode all PDF417 symbols from common image formats with image decode options, with cancellation.
Parameters
- image System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- texts System.String[]@
TryDecodeAllImage(System.IO.Stream stream, System.String[]@ texts) #Attempts to decode all PDF417 symbols from an image stream.
Parameters
- stream System.IO.Stream
- texts System.String[]@
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
- options CodeGlyphX.ImageDecodeOptions
- texts System.String[]@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- texts System.String[]@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA).
Parameters
- image System.Byte[]
- text System.String@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from common image formats (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA), with cancellation.
Parameters
- image System.Byte[]
- cancellationToken System.Threading.CancellationToken
- text System.String@
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[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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[]
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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[]
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from common image formats with image decode options, cancellation, and diagnostics.
Parameters
- image System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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}
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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}
- text System.String@
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}
- cancellationToken System.Threading.CancellationToken
- text System.String@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- text System.String@
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
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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[]
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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[]
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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[]
- options CodeGlyphX.ImageDecodeOptions
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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[]
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- options CodeGlyphX.ImageDecodeOptions
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePng(Stream stream, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from PNG bytes.
Parameters
- png System.Byte[]
- text System.String@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from PNG bytes, with cancellation.
Parameters
- png System.Byte[]
- cancellationToken System.Threading.CancellationToken
- text System.String@
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[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from PNG bytes with image decode options, with cancellation.
Parameters
- png System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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}
- text System.String@
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}
- cancellationToken System.Threading.CancellationToken
- text System.String@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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[]
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from PNG bytes with image decode options, cancellation, and diagnostics.
Parameters
- png System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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}
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
TryDecodePng(System.IO.Stream stream, System.String@ text) #Attempts to decode a PDF417 symbol from a PNG stream.
Parameters
- stream System.IO.Stream
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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
- cancellationToken System.Threading.CancellationToken
- text System.String@
TryDecodePng(System.Byte[] png, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #Attempts to decode a Macro PDF417 symbol from PNG bytes.
Parameters
- png System.Byte[]
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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[]
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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[]
- options CodeGlyphX.ImageDecodeOptions
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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[]
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- options CodeGlyphX.ImageDecodeOptions
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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
- options CodeGlyphX.ImageDecodeOptions
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePngFile(String path, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from a PNG file.
Parameters
- path System.String
- text System.String@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from a PNG file, with cancellation.
Parameters
- path System.String
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts to decode a PDF417 symbol from a PNG file with image decode options, with cancellation.
Parameters
- path System.String
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from a PNG file with image decode options, cancellation, and diagnostics.
Parameters
- path System.String
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
TryDecodePngFile(System.String path, CodeGlyphX.Pdf417.Pdf417Decoded@ decoded) #Attempts to decode a Macro PDF417 symbol from a PNG file.
Parameters
- path System.String
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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
- options CodeGlyphX.ImageDecodeOptions
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Byte[] Webp(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Webp(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as WebP.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Webp(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as WebP from bytes.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String Xbm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Xbm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as XBM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Xbm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as XBM.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String XbmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
public static String Xpm(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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}
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Xpm(System.String text, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as XPM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
Xpm(System.Byte[] data, CodeGlyphX.Pdf417.Pdf417EncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders PDF417 as XPM.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String XpmMacro(String text, Pdf417MacroOptions macro, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("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
- macro CodeGlyphX.Pdf417.Pdf417MacroOptions
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null