0
我使用ZXing.NET生成條形碼。我想生成一個沒有它下面的文本的圖像。我使用下面的代碼:如何刪除條形碼圖像下方的文字?
var content = "AAA";
var writer = new BarcodeWriter
{
Format = BarcodeFormat.CODE_39,
Options = new ZXing.Common.EncodingOptions
{
Height = 80,
Width = 100,
Margin = 1
}
};
var bitmap = writer.Write(content);
https://stackoverflow.com/questions/2244225/remove-text-from-below-of-the-barcode-in-asp-netc – Valkyrie