Interface IBarcodeRenderer<TOutput>
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
BitMatrixThe matrix.
format
BarcodeFormatThe format.
content
stringThe 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
BitMatrixThe matrix.
format
BarcodeFormatThe format.
content
stringThe 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
EncodingOptionsThe options.
Returns
- TOutput