You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is My old code. and it works fine, but after upgrading from 2.4 to 3.0, It doesn't work
var barcode = new Barcode();
barcode.ImageFormat = ImageFormat.Png;
barcode.IncludeLabel = includeLabel;
using var image = barcode.Encode(TYPE.CODE128, code);
await using var m = new MemoryStream();
image.Save(m, ImageFormat.Png);
var imageBytes = m.ToArray();
The text was updated successfully, but these errors were encountered:
This is My old code. and it works fine, but after upgrading from 2.4 to 3.0, It doesn't work
var barcode = new Barcode();
barcode.ImageFormat = ImageFormat.Png;
barcode.IncludeLabel = includeLabel;
using var image = barcode.Encode(TYPE.CODE128, code);
await using var m = new MemoryStream();
image.Save(m, ImageFormat.Png);
var imageBytes = m.ToArray();
The text was updated successfully, but these errors were encountered: