CodeGlyphX logo
CodeGlyphX

API Reference

Class

AztecCode

Namespace CodeGlyphX
Assembly CodeGlyphX
Modifiers static

Aztec code helpers.

Inheritance

  • Object
  • AztecCode

Examples


using CodeGlyphX;
var png = AztecCode.Png("Ticket: CONF-2024");
        

Methods

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

Renders Aztec to ASCII text.

Parameters

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

Renders Aztec to ASCII text.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions required
Bmp 2 overloads
public static Byte[] Bmp(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to BMP bytes.

Parameters

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

Renders Aztec to BMP bytes.

Parameters

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

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

Parameters

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

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

Parameters

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

Decodes 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} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
DecodeImageResult(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken) #

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 required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
DecodePng 2 overloads
public static String DecodePng(Stream stream) #
Returns: String

Decodes an Aztec symbol from PNG bytes.

Parameters

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

Decodes an Aztec symbol from a PNG stream.

Parameters

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

Decodes an Aztec symbol from a PNG file.

Parameters

path System.String requiredposition: 0
Encode 2 overloads
public static BitMatrix Encode(ReadOnlySpan<Byte> data, AztecEncodeOptions options = null) #
Returns: BitMatrix

Encodes a text payload as Aztec.

Parameters

text System.String requiredposition: 0
options CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 1
Encode(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions options) #

Encodes binary payload as Aztec.

Parameters

data System.ReadOnlySpan{System.Byte} required
options CodeGlyphX.Aztec.AztecEncodeOptions required
Eps 2 overloads
public static String Eps(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to EPS markup.

Parameters

text System.String requiredposition: 0
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 3
Eps(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Renders Aztec to EPS markup.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
Html 2 overloads
public static String Html(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to HTML markup.

Parameters

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

Renders Aztec to HTML markup.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Ico 2 overloads
public static Byte[] Ico(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to ICO bytes.

Parameters

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

Renders Aztec to ICO bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Jpeg 2 overloads
public static Byte[] Jpeg(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to JPEG bytes.

Parameters

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

Renders Aztec to JPEG bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Pam 2 overloads
public static Byte[] Pam(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to PAM bytes.

Parameters

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

Renders Aztec to PAM bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Pbm 2 overloads
public static Byte[] Pbm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to PBM bytes.

Parameters

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

Renders Aztec to PBM bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Pdf 2 overloads
public static Byte[] Pdf(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to PDF bytes.

Parameters

text System.String requiredposition: 0
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 1
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 2
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 3
Pdf(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Renders Aztec to PDF bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
Pgm 2 overloads
public static Byte[] Pgm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to PGM bytes.

Parameters

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

Renders Aztec to PGM bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Png 2 overloads
public static Byte[] Png(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to PNG bytes.

Parameters

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

Renders Aztec to PNG bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Ppm 2 overloads
public static Byte[] Ppm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to PPM bytes.

Parameters

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

Renders Aztec to PPM bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
public static RenderedOutput Render(String text, OutputFormat format, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #
Returns: RenderedOutput

Renders an Aztec payload to the requested output format.

Parameters

text System.String requiredposition: 0
format CodeGlyphX.Rendering.OutputFormat requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
extras CodeGlyphX.Rendering.RenderExtras = null optionalposition: 4
Save 2 overloads
public static String Save(String text, String path, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderExtras extras = null) #
Returns: String

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

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
title System.String = null optionalposition: 4
Save(System.String text, System.String path, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderExtras extras) #

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

Parameters

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

Saves Aztec BMP to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveBmp(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec BMP to a stream.

Parameters

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

Saves Aztec BMP to a file.

Parameters

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

Saves Aztec BMP to a stream.

Parameters

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

Saves Aztec EPS to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
SaveEps(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves Aztec EPS to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
SaveEps(System.ReadOnlySpan{System.Byte} data, System.String path, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves Aztec EPS to a file.

Parameters

data System.ReadOnlySpan{System.Byte} required
path System.String required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
SaveEps(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves Aztec EPS to a stream.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
SaveHtml 4 overloads
public static Void SaveHtml(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, String title = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves Aztec HTML to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
title System.String = null optionalposition: 4
SaveHtml(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, System.String title) #

Saves Aztec HTML to a stream.

Parameters

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

Saves Aztec HTML to a file.

Parameters

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

Saves Aztec HTML to a stream.

Parameters

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

Saves Aztec ICO to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveIco(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec ICO to a stream.

Parameters

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

Saves Aztec ICO to a file.

Parameters

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

Saves Aztec ICO to a stream.

Parameters

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

Saves Aztec JPEG to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveJpeg(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec JPEG to a stream.

Parameters

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

Saves Aztec JPEG to a file.

Parameters

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

Saves Aztec JPEG to a stream.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
SavePam 4 overloads
public static Void SavePam(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves Aztec PAM to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePam(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec PAM to a stream.

Parameters

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

Saves Aztec PAM to a file.

Parameters

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

Saves Aztec PAM to a stream.

Parameters

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

Saves Aztec PBM to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePbm(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec PBM to a stream.

Parameters

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

Saves Aztec PBM to a file.

Parameters

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

Saves Aztec PBM to a stream.

Parameters

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

Saves Aztec PDF to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
renderMode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
SavePdf(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves Aztec PDF to a stream.

Parameters

text System.String required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
SavePdf(System.ReadOnlySpan{System.Byte} data, System.String path, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves Aztec PDF to a file.

Parameters

data System.ReadOnlySpan{System.Byte} required
path System.String required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
SavePdf(System.ReadOnlySpan{System.Byte} data, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions, CodeGlyphX.Rendering.RenderMode renderMode) #

Saves Aztec PDF to a stream.

Parameters

data System.ReadOnlySpan{System.Byte} required
stream System.IO.Stream required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
renderMode CodeGlyphX.Rendering.RenderMode required
SavePgm 4 overloads
public static Void SavePgm(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Void
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Saves Aztec PGM to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePgm(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec PGM to a stream.

Parameters

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

Saves Aztec PGM to a file.

Parameters

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

Saves Aztec PGM to a stream.

Parameters

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

Saves Aztec PNG to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePng(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec PNG to a stream.

Parameters

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

Saves Aztec PNG to a file.

Parameters

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

Saves Aztec PNG to a stream.

Parameters

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

Saves Aztec PPM to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SavePpm(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec PPM to a stream.

Parameters

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

Saves Aztec PPM to a file.

Parameters

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

Saves Aztec PPM to a stream.

Parameters

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

Saves Aztec SVG to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveSvg(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec SVG to a stream.

Parameters

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

Saves Aztec SVG to a file.

Parameters

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

Saves Aztec SVG to a stream.

Parameters

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

Saves Aztec SVGZ to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveSvgz(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec SVGZ to a stream.

Parameters

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

Saves Aztec SVGZ to a file.

Parameters

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

Saves Aztec SVGZ to a stream.

Parameters

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

Saves Aztec TGA to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveTga(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec TGA to a stream.

Parameters

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

Saves Aztec TGA to a file.

Parameters

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

Saves Aztec TGA to a stream.

Parameters

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

Saves Aztec WebP to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveWebp(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec WebP to a stream.

Parameters

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

Saves Aztec WebP to a file.

Parameters

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

Saves Aztec WebP to a stream.

Parameters

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

Saves Aztec XBM to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveXbm(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec XBM to a stream.

Parameters

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

Saves Aztec XBM to a file.

Parameters

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

Saves Aztec XBM to a stream.

Parameters

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

Saves Aztec XPM to a file.

Parameters

text System.String requiredposition: 0
path System.String requiredposition: 1
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null optionalposition: 2
renderOptions CodeGlyphX.MatrixOptions = null optionalposition: 3
SaveXpm(System.String text, System.IO.Stream stream, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #

Saves Aztec XPM to a stream.

Parameters

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

Saves Aztec XPM to a file.

Parameters

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

Saves Aztec XPM to a stream.

Parameters

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

Renders Aztec to SVG markup.

Parameters

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

Renders Aztec to SVG markup.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Svgz 2 overloads
public static Byte[] Svgz(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to SVGZ.

Parameters

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

Renders Aztec to SVGZ.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Tga 2 overloads
public static Byte[] Tga(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to TGA bytes.

Parameters

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

Renders Aztec to TGA bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
TryDecode 12 overloads
public static Boolean TryDecode(BitMatrix modules, out String value) #
Returns: Boolean

Attempts to decode an Aztec symbol from a module matrix.

Parameters

modules CodeGlyphX.BitMatrix requiredposition: 0
value System.String@ requiredposition: 1
public static Boolean TryDecode(BitMatrix modules, out String value, out AztecDecodeDiagnostics diagnostics) #
Returns: Boolean

Attempts to decode an Aztec symbol from a module matrix, with cancellation.

Parameters

modules CodeGlyphX.BitMatrix requiredposition: 0
cancellationToken System.Threading.CancellationToken requiredposition: 1
value System.String@ requiredposition: 2
TryDecode(CodeGlyphX.BitMatrix modules, System.String@ value, CodeGlyphX.AztecDecodeDiagnostics@ diagnostics) #

Attempts to decode an Aztec symbol from a module matrix, with diagnostics.

Parameters

modules CodeGlyphX.BitMatrix required
value System.String@ required
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ required
public static Boolean TryDecode(BitMatrix modules, CancellationToken cancellationToken, out String value, out AztecDecodeDiagnostics diagnostics) #
Returns: Boolean

Attempts to decode an Aztec symbol from a module matrix, with cancellation and diagnostics.

Parameters

modules CodeGlyphX.BitMatrix requiredposition: 0
cancellationToken System.Threading.CancellationToken requiredposition: 1
value System.String@ requiredposition: 2
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ requiredposition: 3
public static Boolean TryDecode(ReadOnlySpan<Byte> pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, out String value) #
Returns: Boolean

Attempts to decode an Aztec symbol from raw pixels.

Parameters

pixels System.Byte[] requiredposition: 0
width System.Int32 requiredposition: 1
height System.Int32 requiredposition: 2
stride System.Int32 requiredposition: 3
format CodeGlyphX.PixelFormat requiredposition: 4
value System.String@ requiredposition: 5
public static Boolean TryDecode(ReadOnlySpan<Byte> pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, out String value, out AztecDecodeDiagnostics diagnostics) #
Returns: Boolean

Attempts to decode an Aztec symbol from raw pixels, with cancellation.

Parameters

pixels System.Byte[] requiredposition: 0
width System.Int32 requiredposition: 1
height System.Int32 requiredposition: 2
stride System.Int32 requiredposition: 3
format CodeGlyphX.PixelFormat requiredposition: 4
cancellationToken System.Threading.CancellationToken requiredposition: 5
value System.String@ requiredposition: 6
TryDecode(System.Byte[] pixels, System.Int32 width, System.Int32 height, System.Int32 stride, CodeGlyphX.PixelFormat format, System.String@ value, CodeGlyphX.AztecDecodeDiagnostics@ diagnostics) #

Attempts to decode an Aztec symbol from raw pixels, with diagnostics.

Parameters

pixels System.Byte[] required
width System.Int32 required
height System.Int32 required
stride System.Int32 required
format CodeGlyphX.PixelFormat required
value System.String@ required
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ required
public static Boolean TryDecode(ReadOnlySpan<Byte> pixels, Int32 width, Int32 height, Int32 stride, PixelFormat format, CancellationToken cancellationToken, out String value, out AztecDecodeDiagnostics diagnostics) #
Returns: Boolean

Attempts to decode an Aztec symbol from raw pixels, with cancellation and diagnostics.

Parameters

pixels System.Byte[] requiredposition: 0
width System.Int32 requiredposition: 1
height System.Int32 requiredposition: 2
stride System.Int32 requiredposition: 3
format CodeGlyphX.PixelFormat requiredposition: 4
cancellationToken System.Threading.CancellationToken requiredposition: 5
value System.String@ requiredposition: 6
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ requiredposition: 7
TryDecode(System.ReadOnlySpan{System.Byte} pixels, System.Int32 width, System.Int32 height, System.Int32 stride, CodeGlyphX.PixelFormat format, System.String@ value) #

Attempts to decode an Aztec symbol from raw pixels.

Parameters

pixels System.ReadOnlySpan{System.Byte} required
width System.Int32 required
height System.Int32 required
stride System.Int32 required
format CodeGlyphX.PixelFormat required
value System.String@ required
TryDecode(System.ReadOnlySpan{System.Byte} pixels, System.Int32 width, System.Int32 height, System.Int32 stride, CodeGlyphX.PixelFormat format, System.Threading.CancellationToken cancellationToken, System.String@ value) #

Attempts to decode an Aztec symbol from raw pixels, with cancellation.

Parameters

pixels System.ReadOnlySpan{System.Byte} required
width System.Int32 required
height System.Int32 required
stride System.Int32 required
format CodeGlyphX.PixelFormat required
cancellationToken System.Threading.CancellationToken required
value System.String@ required
TryDecode(System.ReadOnlySpan{System.Byte} pixels, System.Int32 width, System.Int32 height, System.Int32 stride, CodeGlyphX.PixelFormat format, System.String@ value, CodeGlyphX.AztecDecodeDiagnostics@ diagnostics) #

Attempts to decode an Aztec symbol from raw pixels, with diagnostics.

Parameters

pixels System.ReadOnlySpan{System.Byte} required
width System.Int32 required
height System.Int32 required
stride System.Int32 required
format CodeGlyphX.PixelFormat required
value System.String@ required
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ required
TryDecode(System.ReadOnlySpan{System.Byte} pixels, System.Int32 width, System.Int32 height, System.Int32 stride, CodeGlyphX.PixelFormat format, System.Threading.CancellationToken cancellationToken, System.String@ value, CodeGlyphX.AztecDecodeDiagnostics@ diagnostics) #

Attempts to decode an Aztec symbol from raw pixels, with cancellation and diagnostics.

Parameters

pixels System.ReadOnlySpan{System.Byte} required
width System.Int32 required
height System.Int32 required
stride System.Int32 required
format CodeGlyphX.PixelFormat required
cancellationToken System.Threading.CancellationToken required
value System.String@ required
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ required
TryDecodeAllImage 6 overloads
public static Boolean TryDecodeAllImage(Stream stream, out String[] texts) #
Returns: Boolean

Attempts to decode all Aztec symbols from common image formats.

Parameters

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

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

Parameters

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

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

Parameters

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

Attempts to decode all Aztec symbols from an image stream.

Parameters

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

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

Parameters

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

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

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
texts System.String[]@ required
TryDecodeImage 21 overloads
public static Boolean TryDecodeImage(Stream stream, out String text) #
Returns: Boolean

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

Parameters

image System.Byte[] requiredposition: 0
text System.String@ requiredposition: 1
public static Boolean TryDecodeImage(Stream stream, out String text, out AztecDecodeDiagnostics diagnostics) #
Returns: Boolean

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

Parameters

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

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

Parameters

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

Attempts 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[] requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
TryDecodeImage(System.Byte[] image, System.String@ text, CodeGlyphX.AztecDecodeDiagnostics@ diagnostics) #

Attempts to decode an Aztec symbol from common image formats, with diagnostics.

Parameters

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

Attempts to decode an Aztec symbol from common image formats with image decode options, with diagnostics.

Parameters

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

Attempts to decode an Aztec symbol from common image formats with image decode options, cancellation, and diagnostics.

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

Attempts 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} required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ required
TryDecodeImage(System.IO.Stream stream, System.String@ text) #

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

Parameters

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

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

Parameters

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

Attempts to decode 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 required
options CodeGlyphX.ImageDecodeOptions required
text System.String@ required
TryDecodeImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text) #

Attempts to decode 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 required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
TryDecodeImage(System.IO.Stream stream, System.String@ text, CodeGlyphX.AztecDecodeDiagnostics@ diagnostics) #

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

Parameters

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

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

Parameters

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

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

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ required
TryDecodePng 21 overloads
public static Boolean TryDecodePng(Stream stream, out String text) #
Returns: Boolean

Attempts to decode an Aztec symbol from PNG bytes.

Parameters

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

Attempts to decode an Aztec symbol from PNG bytes, with cancellation.

Parameters

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

Attempts to decode an Aztec symbol from PNG bytes with image decode options.

Parameters

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

Attempts to decode an Aztec symbol from PNG bytes with image decode options, with cancellation.

Parameters

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

Attempts to decode an Aztec symbol from PNG bytes in a span.

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

Attempts to decode an Aztec symbol from PNG bytes, with diagnostics.

Parameters

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

Attempts to decode an Aztec symbol from PNG bytes with image decode options, with diagnostics.

Parameters

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

Attempts to decode an Aztec symbol from PNG bytes with image decode options, cancellation, and diagnostics.

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

Attempts to decode an Aztec symbol from a PNG stream.

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

stream System.IO.Stream required
options CodeGlyphX.ImageDecodeOptions required
cancellationToken System.Threading.CancellationToken required
text System.String@ required
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ required
TryDecodePngFile 7 overloads
public static Boolean TryDecodePngFile(String path, out String text) #
Returns: Boolean

Attempts to decode an Aztec symbol from a PNG file.

Parameters

path System.String requiredposition: 0
text System.String@ requiredposition: 1
public static Boolean TryDecodePngFile(String path, out String text, out AztecDecodeDiagnostics diagnostics) #
Returns: Boolean

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

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

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

Parameters

path System.String requiredposition: 0
options CodeGlyphX.ImageDecodeOptions requiredposition: 1
cancellationToken System.Threading.CancellationToken requiredposition: 2
text System.String@ requiredposition: 3
diagnostics CodeGlyphX.AztecDecodeDiagnostics@ requiredposition: 4
Webp 2 overloads
public static Byte[] Webp(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: Byte[]
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to WebP bytes.

Parameters

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

Renders Aztec to WebP bytes.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Xbm 2 overloads
public static String Xbm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to XBM.

Parameters

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

Renders Aztec to XBM.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required
Xpm 2 overloads
public static String Xpm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #
Returns: String
Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")

Renders Aztec to XPM.

Parameters

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

Renders Aztec to XPM.

Parameters

data System.ReadOnlySpan{System.Byte} required
encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions required
renderOptions CodeGlyphX.MatrixOptions required