API Reference
AztecCode
Aztec code helpers.
Inheritance
- Object
- AztecCode
Examples
using CodeGlyphX;
var png = AztecCode.Png("Ticket: CONF-2024");
Methods
public static String Ascii(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixAsciiRenderOptions renderOptions = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to ASCII text.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions = null
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}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.Rendering.Ascii.MatrixAsciiRenderOptions
public static Byte[] Bmp(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to BMP bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Bmp(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to BMP bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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(Stream stream, 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
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
public static String DecodePngFile(String path) #StringDecodes an Aztec symbol from a PNG file.
Parameters
- path System.String
public static BitMatrix Encode(ReadOnlySpan<Byte> data, AztecEncodeOptions options = null) #BitMatrixEncodes a text payload as Aztec.
Parameters
- text System.String
- options CodeGlyphX.Aztec.AztecEncodeOptions = null
Encode(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions options) #Encodes binary payload as Aztec.
Parameters
- data System.ReadOnlySpan{System.Byte}
- options CodeGlyphX.Aztec.AztecEncodeOptions
public static String Eps(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to EPS markup.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
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}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
public static String Html(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to HTML markup.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Html(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to HTML markup.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Ico(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to ICO bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Ico(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to ICO bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Jpeg(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to JPEG bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Jpeg(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to JPEG bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Pam(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to PAM bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Pam(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to PAM bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Pbm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to PBM bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Pbm(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to PBM bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Pdf(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to PDF bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
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}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
public static Byte[] Pgm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to PGM bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Pgm(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to PGM bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Png(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to PNG bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Png(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to PNG bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Ppm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to PPM bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Ppm(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to PPM bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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 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
- title System.String = null
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
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- extras CodeGlyphX.Rendering.RenderExtras
public static Void SaveBmp(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec BMP to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveEps(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec EPS to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
public static Void SaveHtml(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, String title = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec HTML to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- title System.String = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- title System.String
public static Void SaveIco(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec ICO to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveJpeg(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec JPEG to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePam(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec PAM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePbm(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec PBM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePdf(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null, RenderMode renderMode = Vector) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec PDF to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
- renderMode CodeGlyphX.Rendering.RenderMode = Vector
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
- renderMode CodeGlyphX.Rendering.RenderMode
public static Void SavePgm(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec PGM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePng(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec PNG to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SavePpm(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec PPM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveSvg(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec SVG to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveSvgz(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec SVGZ to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveTga(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec TGA to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveWebp(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec WebP to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveXbm(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec XBM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Void SaveXpm(ReadOnlySpan<Byte> data, Stream stream, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Saves Aztec XPM to a file.
Parameters
- text System.String
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
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
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- path System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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}
- stream System.IO.Stream
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String Svg(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to SVG markup.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Svg(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to SVG markup.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Svgz(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to SVGZ.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Svgz(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to SVGZ.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static Byte[] Tga(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to TGA bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Tga(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to TGA bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
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, out String value, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a module matrix, with cancellation.
Parameters
- modules CodeGlyphX.BitMatrix
- cancellationToken System.Threading.CancellationToken
- value System.String@
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
- 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(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.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, out String value, out AztecDecodeDiagnostics diagnostics) #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@
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[]
- 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.Byte[]
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- cancellationToken System.Threading.CancellationToken
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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}
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- value System.String@
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}
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- cancellationToken System.Threading.CancellationToken
- value System.String@
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}
- width System.Int32
- height System.Int32
- stride System.Int32
- format CodeGlyphX.PixelFormat
- value System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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}
- 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(Stream stream, out String[] texts) #BooleanAttempts to decode all Aztec symbols from common image formats.
Parameters
- image System.Byte[]
- texts System.String[]@
public static Boolean TryDecodeAllImage(Stream stream, ImageDecodeOptions options, out String[] texts) #BooleanAttempts to decode all Aztec symbols from common image formats with image decode options.
Parameters
- image System.Byte[]
- options CodeGlyphX.ImageDecodeOptions
- texts System.String[]@
public static Boolean TryDecodeAllImage(Stream stream, ImageDecodeOptions options, CancellationToken cancellationToken, out String[] texts) #BooleanAttempts to decode all 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[]@
TryDecodeAllImage(System.IO.Stream stream, System.String[]@ texts) #Attempts to decode all Aztec symbols from an image stream.
Parameters
- stream System.IO.Stream
- texts System.String[]@
TryDecodeAllImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.String[]@ texts) #Attempts to decode all Aztec symbols from an image stream with image decode options.
Parameters
- stream System.IO.Stream
- options CodeGlyphX.ImageDecodeOptions
- texts System.String[]@
TryDecodeAllImage(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String[]@ texts) #Attempts to decode all 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(Stream stream, 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(Stream stream, out String text, out AztecDecodeDiagnostics diagnostics) #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@
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[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
public static Boolean TryDecodeImage(Stream stream, ImageDecodeOptions options, out String text, out AztecDecodeDiagnostics diagnostics) #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@
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[]
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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[]
- 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 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@
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}
- text System.String@
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}
- cancellationToken System.Threading.CancellationToken
- text System.String@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
TryDecodeImage(System.ReadOnlySpan{System.Byte} image, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text) #Attempts to decode 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@
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}
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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
- text System.String@
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
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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
- 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 PNG bytes.
Parameters
- png System.Byte[]
- text System.String@
public static Boolean TryDecodePng(Stream stream, 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@
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[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
public static Boolean TryDecodePng(Stream stream, 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@
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}
- text System.String@
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}
- cancellationToken System.Threading.CancellationToken
- text System.String@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
TryDecodePng(System.ReadOnlySpan{System.Byte} png, CodeGlyphX.ImageDecodeOptions options, System.Threading.CancellationToken cancellationToken, System.String@ text) #Attempts to decode 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@
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[]
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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[]
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
public static Boolean TryDecodePng(Stream stream, 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@
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}
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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}
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
TryDecodePng(System.IO.Stream stream, System.String@ text) #Attempts to decode an Aztec symbol from a PNG stream.
Parameters
- stream System.IO.Stream
- text System.String@
TryDecodePng(System.IO.Stream stream, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #Attempts to decode an Aztec symbol from a PNG stream with image decode options.
Parameters
- stream System.IO.Stream
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
TryDecodePng(System.IO.Stream stream, System.String@ text, CodeGlyphX.AztecDecodeDiagnostics@ diagnostics) #Attempts to decode an Aztec symbol from a PNG stream, with diagnostics.
Parameters
- stream System.IO.Stream
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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
- options CodeGlyphX.ImageDecodeOptions
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- options CodeGlyphX.ImageDecodeOptions
- cancellationToken System.Threading.CancellationToken
- text System.String@
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
- 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, out String text, out AztecDecodeDiagnostics diagnostics) #BooleanAttempts to decode an Aztec symbol from a PNG file, with cancellation.
Parameters
- path System.String
- cancellationToken System.Threading.CancellationToken
- text System.String@
TryDecodePngFile(System.String path, CodeGlyphX.ImageDecodeOptions options, System.String@ text) #Attempts to decode 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, out String text, out AztecDecodeDiagnostics diagnostics) #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@
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
- text System.String@
- diagnostics CodeGlyphX.AztecDecodeDiagnostics@
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
- 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@
public static Byte[] Webp(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to WebP bytes.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Webp(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to WebP bytes.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String Xbm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to XBM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Xbm(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to XBM.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions
public static String Xpm(ReadOnlySpan<Byte> data, AztecEncodeOptions encodeOptions = null, MatrixOptions renderOptions = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders Aztec to XPM.
Parameters
- text System.String
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions = null
- renderOptions CodeGlyphX.MatrixOptions = null
Xpm(System.ReadOnlySpan{System.Byte} data, CodeGlyphX.Aztec.AztecEncodeOptions encodeOptions, CodeGlyphX.MatrixOptions renderOptions) #Renders Aztec to XPM.
Parameters
- data System.ReadOnlySpan{System.Byte}
- encodeOptions CodeGlyphX.Aztec.AztecEncodeOptions
- renderOptions CodeGlyphX.MatrixOptions