Dear support!
Is there a chance that this could be added? Our clients need this feature.
{
using (Bitmap barcode = builder.GenerateBarCodeImage())
using (Bitmap picture = (Bitmap)Image.FromFile(@"path_to_your_picture.png"))
using (Bitmap output = new Bitmap(Math.Max(barcode.Width, picture.Width), barcode.Height + picture.Height))
{
using (Graphics g = Graphics.FromImage(output))
{
g.Clear(Color.White);
g.DrawImage(picture, new PointF(0, 0));
g.DrawImage(barcode, new PointF(0, picture.Height));
}
output.Save("output.jpg");
}
}
Hello!
Hello!
Just checking if there is any progress on this feature
Kind regards,
Katja
The feature is now available. Please download the latest version of Aspose.BarCode and try it at your end. Visit the link Create Barcode with Image In Place of Codetext for details. Feel free to contact us in case of any query or comments.
Hello.
Thank you, but I think the link is not correct. The code there is the same as the workaround you posted a couple of posts back (on May 30th). I will add the screenshot.
Capture.PNG (104.6 KB)
Kind regards,
Katja
The link shared is correct one. The workaround is actually the fix that is available for this issue.
The issues you have found earlier (filed as ) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by MuzammilKhan