私は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