Hi does anyone know how to include the numbers/strings too at the bottom when it draw the barcode?
Here is my code
private void btnGenerate_Click_1(object sender, EventArgs e)
{
Zen.Barcode.Code128BarcodeDraw barcode = Zen.Barcode.BarcodeDrawFactory.Code128WithChecksum;
pictureBox1.Image = barcode.Draw(textBox1.Text, 50);
}
PS should i save it in a database column and call it there too? Thank you
UPDATE base from sir VVatashi answer. here is the new output.
But its overlapping the barcode i want it to look something like this:

Thank you


You can print text on image with System.Drawing, according to your code:
It's a bit unclear how database related to the first part of your question.
Update. Oh, I did not notice that the generated barcode graph is the entire image. In this case, you can draw barcode and text on a larger image: