picqer / php-barcode-generator

Barcode generator in PHP that is easy to use, non-bloated and framework independent.
GNU Lesser General Public License v3.0
1.67k stars 402 forks source link

Orientation option #86

Closed jomofcw closed 4 years ago

jomofcw commented 4 years ago

Hello !

Thanks for the work. It would be nice if we could have an "orientation" option ("horizontal" or "vertical") . Is it possible, please ?

Mr-TOA commented 4 years ago

Hi Jomo, you can use CSS for that:

.vertical_barcode {
     transform: rotate(-90deg);
     transform-origin: right, top;
     -ms-transform: rotate(-90deg);
     -ms-transform-origin:right, top;
     -webkit-transform: rotate(-90deg);
     -webkit-transform-origin:right, top;
}
jomofcw commented 4 years ago

Hello,

Thanks for your answer. I've tried this, but I have to put it in a PDF, using mPDF, and it doesn't support the "transform" CSS property, sadly. So curently I use JPG barcode and an image modificator to rotate it. Would be nicer with an orientation option.

casperbakker commented 4 years ago

So curently I use JPG barcode and an image modificator to rotate it. Would be nicer with an orientation option.

I think that is a fine solution for your use case.