API Reference
AztecCode
Aztec code helpers.
Inheritance
- Object
- AztecCode
Examples
using CodeGlyphX;
AztecCode.Save("Ticket: CONF-2024", "ticket.png");
Methods
public static DecodeBatchResult<String> DecodeImageBatch(IEnumerable<Byte[]> images, ImageDecodeOptions options = null, CancellationToken cancellationToken = null) #DecodeBatchResult<String>Decodes a batch of Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 an Aztec symbol from a PNG file.
Parameters
- path System.String
public static BitMatrix Encode(String text, AztecEncodeOptions options = null) #BitMatrixEncodes a text payload as Aztec.
Parameters
- text System.String
- options CodeGlyphX.Aztec.AztecEncodeOptions = null
public static BitMatrix Encode(ReadOnlySpan<Byte> data, AztecEncodeOptions options = null) #BitMatrixEncodes binary payload as Aztec.
Parameters
- data System.ReadOnlySpan{System.Byte}
- options CodeGlyphX.Aztec.AztecEncodeOptions = null
public static RenderedOutput Render(String text, OutputFormat format, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #RenderedOutputRenders an Aztec payload to the requested output format.
Parameters
- text System.String
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static RenderedOutput Render(Byte[] data, OutputFormat format, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #RenderedOutputRenders an Aztec binary payload to the requested output format.
Parameters
- data System.Byte[]
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static RenderedOutput Render(ReadOnlySpan<Byte> data, OutputFormat format, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #RenderedOutputRenders an Aztec binary payload to the requested output format.
Parameters
- data System.ReadOnlySpan{System.Byte}
- format CodeGlyphX.Rendering.OutputFormat
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static String Save(String text, String path, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #StringSaves Aztec to a file based on extension. Defaults to PNG when no extension is provided.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static String Save(Byte[] data, String path, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #StringSaves an Aztec binary payload to a file based on extension. Defaults to PNG when no extension is provided.
Parameters
- data System.Byte[]
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static String Save(ReadOnlySpan<Byte> data, String path, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #StringSaves an Aztec binary payload to a file based on extension. Defaults to PNG when no extension is provided.
Parameters
- data System.ReadOnlySpan{System.Byte}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- extras CodeGlyphX.Rendering.RenderExtras = null
public static Boolean TryDecode(BitMatrix modules, out String value) #BooleanAttempts to decode an Aztec symbol from a module matrix.
Parameters
- modules CodeGlyphX.BitMatrix
- value System.String@
public static Boolean TryDecode(BitMatrix modules, CancellationToken cancellationToken, out String value) #BooleanAttempts to decode an Aztec symbol from a module matrix, with cancellation.
Parameters
- modules CodeGlyphX.BitMatrix
- cancellationToken System.Threading.CancellationToken
- value System.String@
public static Boolean TryDecode(BitMatrix modules, out String value, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a module matrix, with diagnostics.
Parameters
- modules CodeGlyphX.BitMatrix
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecode(BitMatrix modules, CancellationToken cancellationToken, out String value, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a module matrix, with cancellation and diagnostics.
Parameters
- modules CodeGlyphX.BitMatrix
- cancellationToken System.Threading.CancellationToken
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecode(Byte[] pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, out String value) #BooleanAttempts to decode an Aztec symbol from raw pixels.
Parameters
- pixels System.Byte[]
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- value System.String@
public static Boolean TryDecode(Byte[] pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, CancellationToken cancellationToken, out String value) #BooleanAttempts to decode an Aztec symbol from raw pixels, with cancellation.
Parameters
- pixels System.Byte[]
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- cancellationToken System.Threading.CancellationToken
- value System.String@
public static Boolean TryDecode(Byte[] pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, out String value, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from raw pixels, with diagnostics.
Parameters
- pixels System.Byte[]
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecode(Byte[] pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, CancellationToken cancellationToken, out String value, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from raw pixels, with cancellation and diagnostics.
Parameters
- pixels System.Byte[]
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- cancellationToken System.Threading.CancellationToken
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecode(ReadOnlySpan<Byte> pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, out String value) #BooleanAttempts to decode an Aztec symbol from raw pixels.
Parameters
- pixels System.ReadOnlySpan{System.Byte}
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- value System.String@
public static Boolean TryDecode(ReadOnlySpan<Byte> pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, CancellationToken cancellationToken, out String value) #BooleanAttempts to decode an Aztec symbol from raw pixels, with cancellation.
Parameters
- pixels System.ReadOnlySpan{System.Byte}
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- cancellationToken System.Threading.CancellationToken
- value System.String@
public static Boolean TryDecode(ReadOnlySpan<Byte> pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, out String value, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from raw pixels, with diagnostics.
Parameters
- pixels System.ReadOnlySpan{System.Byte}
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecode(ReadOnlySpan<Byte> pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, CancellationToken cancellationToken, out String value, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from raw pixels, with cancellation and diagnostics.
Parameters
- pixels System.ReadOnlySpan{System.Byte}
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- cancellationToken System.Threading.CancellationToken
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodeAllImage(Byte[] image, out String[] texts) #BooleanAttempts to decode all Aztec 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 Aztec 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 Aztec 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 Aztec 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 Aztec 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 Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from common image formats, with diagnostics.
Parameters
- image System.Byte[]
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(Byte[] image, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from common image formats with image decode options, with diagnostics.
Parameters
- image System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(Byte[] image, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, out String text) #BooleanAttempts to decode an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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(ReadOnlySpan<Byte> image, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from common image formats in a span, with diagnostics.
Parameters
- image System.ReadOnlySpan{System.Byte}
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(ReadOnlySpan<Byte> image, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(Stream stream, out String text) #BooleanAttempts to decode an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from an image stream, with diagnostics.
Parameters
- stream System.IO.Stream
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from an image stream with image decode options, with diagnostics.
Parameters
- stream System.IO.Stream
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(Byte[] png, out String text) #BooleanAttempts to decode an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from PNG bytes, with diagnostics.
Parameters
- png System.Byte[]
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(Byte[] png, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from PNG bytes with image decode options, with diagnostics.
Parameters
- png System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(Byte[] png, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from PNG bytes in a span, with diagnostics.
Parameters
- png System.ReadOnlySpan{System.Byte}
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(ReadOnlySpan<Byte> png, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(Stream stream, out String text) #BooleanAttempts to decode an Aztec 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 an Aztec 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, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a PNG stream, with diagnostics.
Parameters
- stream System.IO.Stream
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a PNG stream with image decode options, with diagnostics.
Parameters
- stream System.IO.Stream
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(Stream stream, CancellationToken cancellationToken, out String text) #BooleanAttempts to decode an Aztec symbol from a PNG stream, with cancellation.
Parameters
- stream System.IO.Stream
- cancellationToken System.Threading.CancellationToken
- text System.String@
public static Boolean TryDecodePng(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String text) #BooleanAttempts to decode an Aztec 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, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@
public static Boolean TryDecodePngFile(String path, out String text) #BooleanAttempts to decode an Aztec 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 an Aztec 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 an Aztec 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 an Aztec 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 AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a PNG file, with diagnostics.
Parameters
- path System.String
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a PNG file with image decode options, with diagnostics.
Parameters
- path System.String
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePngFile(String path, ImageDecodeOptions options, CancellationToken cancellationToken, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec 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.AztecDecodeDiagnostics@