如何将 .wmf“阿拉伯语”文件转换为 PDF?
我使用此代码
iTextSharp.text.Image img1 = ImgWMF.GetInstance(@"path.wmf");
Document pdfDoc = new Document(img1);
PdfWriter.GetInstance(pdfDoc, new FileStream(@"path.pdf", FileMode.Create));
pdfDoc.Open();
img1.SetAbsolutePosition(0, 0);
pdfDoc.Add(img1);
pdfDoc.Close();
但不幸的是,字母被“从左到右”翻转
PS:我尝试了其他库和工具,但是PDF图像的质量太差了。