Displaying barcodes

Repeat the previous step

You have learned how to save the barcode to a file. If you prefer to display it on the screen, you simply need to change the last part of your script.

Output the stream

We use the same BCGDrawing class.

We will now change the header to direct the browser to output an image. If the image is a JPG, you must modify it.

Omit the second argument, the method finish will output the stream.


$drawing = new BCGDrawing($code, $colorWhite);

header('Content-Type: image/png');
$drawing->finish(BCGDrawing::IMG_FORMAT_PNG);

Remember if you output the image to a browser, you must not have output anything else to the stream beforehand.
One common mistake is to try to display the barcode stream directly in an HTML page.