-
-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
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
TcPpdfOutput and FpdfOutput do not support full utf-8 character set #131
Comments
Please show us your result, too. Where and how does the utf8 issue appear? |
Hello, you can see it on pdf which i have uploaded... |
Thank you for the example. I can confirm that Based on a quick Google search, this seems to be a widespread issue. It is discussed here, for instance. Maybe @sdespont or @Franco2911 know how to fix this issue? |
Hello, i have solved issue with help of your link and my trying to digg up the part of code where QRbill uses fonts definition..
|
As mentioned above, this is a problem of TcPpdf/Fpdf and ISO-8859-1 encoding. When usign TCPDF, the easiest is to set Just keep in mind that if you are using composer that you can't change it directly in vendor folder. Make own copy of it. |
Or you provide a pr to fix it for good within this library 😉 |
Totally agree. If there will be time, I will look at it. |
Hello, i am using tcpdf as output option. Here is my code
$tcPdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8');
$tcPdf->setPrintHeader(false);
$tcPdf->setPrintFooter(false);
$tcPdf->AddPage();
$output = new QrBill\PaymentPart\Output\TcPdfOutput\TcPdfOutput($qrBill, 'en', $tcPdf);
$output->setPrintable(false)->getPaymentPart();
Originally posted by @onebeat in #130 (comment)
The text was updated successfully, but these errors were encountered: