Hello,
In order to buy your product I test your PRO-Trial version. I run the following code:
$docx = new CreateDocx();
$docx->setLanguage('ru-RU');
$text = 'этот текст написан кириллицей - this is cyrillic text';
$paramsText = array(
'b' => 'on',
'font' => 'Arial Cyrillic'
);
$docx->addText($text, $paramsText);
$docx->createDocx('example_text');
$document = new TransformDoc();
$document->setStrFile('example_text.docx');
$document->generatePDF();
Unfortunately, the result PDF file is incorrect:
???? ????? ??????? ?????????? - this is cyrillic text
but example_text.docx is ok:
этот текст написан кириллицей - this is cyrillic text