Interface IBarcodeWriter<TOutput>
- Namespace
- ZXing
- Assembly
- zxing.dll
Interface for a smart class to encode some content into a barcode
public interface IBarcodeWriter<out TOutput>
Type Parameters
TOutput
Methods
Write(string)
Creates a visual representation of the contents
TOutput Write(string contents)
Parameters
contents
stringThe contents.
Returns
- TOutput
Write(BitMatrix)
Returns a rendered instance of the barcode which is given by a BitMatrix.
TOutput Write(BitMatrix matrix)
Parameters
matrix
BitMatrixThe matrix.
Returns
- TOutput