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 Pdf417Builder Create(String text, 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
public static Pdf417Builder Create(Byte[] data, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Pdf417BuilderStarts a fluent PDF417 builder for byte payloads.
Parameters
- data System.Byte[]
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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(Byte[] image, 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
public static DecodeResult<String> DecodeImageResult(ReadOnlySpan<Byte> image, 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) in a span and returns diagnostics.
Parameters
- image System.ReadOnlySpan{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 an image stream (PNG/BMP/PPM/PBM/PGM/PAM/XBM/XPM/TGA) and returns diagnostics.
Parameters
- stream System.IO.Stream
- options CodeGlyphX.ImageDecodeOptions = null
- cancellationToken System.Threading.CancellationToken = null
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(Byte[] data, Pdf417EncodeOptions options = null) #BitMatrixEncodes a byte payload as PDF417.
Parameters
- data System.Byte[]
- options CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
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 RenderedOutput Render(String text, 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
public static RenderedOutput Render(Byte[] data, OutputFormat format, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #RenderedOutputRenders a PDF417 byte payload to the requested output format.
Parameters
- data System.Byte[]
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static RenderedOutput Render(ReadOnlySpan<Byte> data, OutputFormat format, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #RenderedOutputRenders a PDF417 byte payload to the requested output format.
Parameters
- data System.ReadOnlySpan{System.Byte}
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
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(ReadOnlySpan<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
- extras CodeGlyphX.Rendering.RenderExtras = null
public static String Save(String text, String path, Pdf417EncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #StringSaves 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 = 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.Byte[]
- path System.String
- encodeOptions CodeGlyphX.Pdf417.Pdf417EncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
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 Boolean TryDecodeAllImage(Byte[] image, out String[] texts) #BooleanAttempts to decode all PDF417 symbols from common image formats.
Parameters
- image System.Byte[]
- texts System.String[]@
public static Boolean TryDecodeAllImage(Byte[] image, 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(Byte[] image, 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[]@
public static Boolean TryDecodeAllImage(Stream stream, out String[] texts) #BooleanAttempts to decode all PDF417 symbols from an image stream.
Parameters
- stream System.IO.Stream
- texts System.String[]@
public static Boolean TryDecodeAllImage(Stream stream, ImageDecodeOptions options, out String[] texts) #BooleanAttempts to decode all PDF417 symbols from an image stream with image decode options.
Parameters
- stream System.IO.Stream
- 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 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(Byte[] image, out String text) #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(Byte[] image, CancellationToken cancellationToken, out String text) #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@
public static Boolean TryDecodeImage(Byte[] image, ImageDecodeOptions options, out String text) #BooleanAttempts 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(Byte[] image, ImageDecodeOptions options, CancellationToken cancellationToken, out String text) #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@
public static Boolean TryDecodeImage(Byte[] image, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from common image formats, with diagnostics.
Parameters
- image System.Byte[]
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodeImage(Byte[] image, ImageDecodeOptions options, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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(Byte[] image, 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, out String text) #BooleanAttempts to decode a PDF417 symbol from common image formats in a span.
Parameters
- image System.ReadOnlySpan{System.Byte}
- text System.String@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, CancellationToken cancellationToken, out String text) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, out String text) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, CancellationToken cancellationToken, out String text) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Stream stream, out String text) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Stream stream, CancellationToken cancellationToken, out String text) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, out String text) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Stream stream, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from an image stream, with diagnostics.
Parameters
- stream System.IO.Stream
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Byte[] image, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Byte[] image, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Byte[] image, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodeImage(Byte[] image, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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(Byte[] png, out String text) #BooleanAttempts to decode a PDF417 symbol from PNG bytes.
Parameters
- png System.Byte[]
- text System.String@
public static Boolean TryDecodePng(Byte[] png, CancellationToken cancellationToken, out String text) #BooleanAttempts to decode a PDF417 symbol from PNG bytes, with cancellation.
Parameters
- png System.Byte[]
- cancellationToken System.Threading.CancellationToken
- text System.String@
public static Boolean TryDecodePng(Byte[] png, ImageDecodeOptions options, out String text) #BooleanAttempts 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(Byte[] png, ImageDecodeOptions options, CancellationToken cancellationToken, out String text) #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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, out String text) #BooleanAttempts to decode a PDF417 symbol from PNG bytes in a span.
Parameters
- png System.ReadOnlySpan{System.Byte}
- text System.String@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, CancellationToken cancellationToken, out String text) #BooleanAttempts 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, out String text) #BooleanAttempts 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, CancellationToken cancellationToken, out String text) #BooleanAttempts 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@
public static Boolean TryDecodePng(Byte[] png, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from PNG bytes, with diagnostics.
Parameters
- png System.Byte[]
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodePng(Byte[] png, ImageDecodeOptions options, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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(Byte[] png, 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodePng(Stream stream, out String text) #BooleanAttempts to decode a PDF417 symbol from a PNG stream.
Parameters
- stream System.IO.Stream
- text System.String@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, out String text) #BooleanAttempts to decode a PDF417 symbol from a PNG stream with image decode options.
Parameters
- stream System.IO.Stream
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text) #BooleanAttempts 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@
public static Boolean TryDecodePng(Stream stream, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from a PNG stream, with diagnostics.
Parameters
- stream System.IO.Stream
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodePng(Stream stream, CancellationToken cancellationToken, out String text) #BooleanAttempts to decode a PDF417 symbol from a PNG stream, with cancellation.
Parameters
- stream System.IO.Stream
- cancellationToken System.Threading.CancellationToken
- text System.String@
public static Boolean TryDecodePng(Byte[] png, out Pdf417Decoded decoded) #BooleanAttempts to decode a Macro PDF417 symbol from PNG bytes.
Parameters
- png System.Byte[]
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePng(Byte[] png, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts to decode a Macro PDF417 symbol from PNG bytes, with cancellation.
Parameters
- png System.Byte[]
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePng(Byte[] png, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts to decode a Macro PDF417 symbol from PNG bytes with image decode options.
Parameters
- png System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePng(Byte[] png, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, out Pdf417Decoded decoded) #BooleanAttempts to decode a Macro PDF417 symbol from PNG bytes in a span.
Parameters
- png System.ReadOnlySpan{System.Byte}
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodePng(Stream stream, out Pdf417Decoded decoded) #BooleanAttempts to decode a Macro PDF417 symbol from a PNG stream.
Parameters
- stream System.IO.Stream
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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 String text) #BooleanAttempts to decode a PDF417 symbol from a PNG file.
Parameters
- path System.String
- text System.String@
public static Boolean TryDecodePngFile(String path, CancellationToken cancellationToken, out String text) #BooleanAttempts to decode a PDF417 symbol from a PNG file, with cancellation.
Parameters
- path System.String
- cancellationToken System.Threading.CancellationToken
- text System.String@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, out String text) #BooleanAttempts 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 String text) #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@
public static Boolean TryDecodePngFile(String path, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts to decode a PDF417 symbol from a PNG file, with diagnostics.
Parameters
- path System.String
- text System.String@
- diagnostics CodeGlyphX.Pdf417DecodeDiagnostics@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, out String text, out Pdf417DecodeDiagnostics diagnostics) #BooleanAttempts 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@
public static Boolean TryDecodePngFile(String path, out Pdf417Decoded decoded) #BooleanAttempts to decode a Macro PDF417 symbol from a PNG file.
Parameters
- path System.String
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePngFile(String path, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts to decode a Macro PDF417 symbol from a PNG file, with cancellation.
Parameters
- path System.String
- cancellationToken System.Threading.CancellationToken
- decoded CodeGlyphX.Pdf417.Pdf417Decoded@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, out Pdf417Decoded decoded) #BooleanAttempts 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@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, CancellationToken cancellationToken, out Pdf417Decoded decoded) #BooleanAttempts 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@