We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to hide barcode text in bottom. Only barcode should display....how to do that?
The text was updated successfully, but these errors were encountered:
Fixed kreativekorp#6
ceecb50
See also the relative merge request
Sorry, something went wrong.
//Remove the text below the barcode:
`<?php class barcode_generator { public function output_image($format, $symbology, $data, $options) { switch (strtolower(preg_replace('/[^A-Za-z0-9]/', '', $format))) { case 'png': header('Content-Type: image/png'); $image = $this->render_image($symbology, $data, $options); // Remove the text rendering part $image = preg_replace('/<text.</text>/', '', $image); echo $image; break; case 'svg': header('Content-Type: image/svg+xml'); $svg = $this->render_svg($symbology, $data, $options); // Remove the text rendering part $svg = preg_replace('/<text.</text>/', '', $svg); echo $svg; break; default: return false; } }
// Other methods...
}`
No branches or pull requests
I want to hide barcode text in bottom. Only barcode should display....how to do that?
The text was updated successfully, but these errors were encountered: