Table of Contents

Interface IBarcodeRenderer<TOutput>

Namespace
ZXing.Rendering
Assembly
zxing.dll

Interface for a class to convert a BitMatrix to an output image format

public interface IBarcodeRenderer<out TOutput>

Type Parameters

TOutput

Methods

Render(BitMatrix, BarcodeFormat, string)

Renders the specified matrix to its graphically representation

TOutput Render(BitMatrix matrix, BarcodeFormat format, string content)

Parameters

matrix BitMatrix

The matrix.

format BarcodeFormat

The format.

content string

The encoded content of the barcode which should be included in the image. That can be the numbers below a 1D barcode or something other.

Returns

TOutput

Render(BitMatrix, BarcodeFormat, string, EncodingOptions)

Renders the specified matrix to its graphically representation

TOutput Render(BitMatrix matrix, BarcodeFormat format, string content, EncodingOptions options)

Parameters

matrix BitMatrix

The matrix.

format BarcodeFormat

The format.

content string

The encoded content of the barcode which should be included in the image. That can be the numbers below a 1D barcode or something other.

options EncodingOptions

The options.

Returns

TOutput