BR200248-2-1.dwg.zip (87.2 KB)
附件中的图纸转换pdf后, pdf内的许多文字都非常模糊, 能不能帮忙解决一下, 谢谢
使用的版本是 Aspose.CAD for Java 20.4
环境 JDK1.7 tomcat7
BR200248-2-1.dwg.zip (87.2 KB)
附件中的图纸转换pdf后, pdf内的许多文字都非常模糊, 能不能帮忙解决一下, 谢谢
使用的版本是 Aspose.CAD for Java 20.4
环境 JDK1.7 tomcat7
WechatIMG1576.png (33.8 KB)
1591152740169.jpg (123.4 KB)
@mudassir.fayyaz 附件是源图和生成的PDF对照, 其中有许多文字和数字非常模糊 看不清
下面是我的转换代码
License license = new License();
license.setLicense(new File(ConvertConstant.CONVERT_LICENSE_PATH));
Image img = null;
try {
img = Image.load(new FileInputStream(srcFile));
} catch (Exception e) {
e.printStackTrace();
}
CadRasterizationOptions pdfCadOpts = new CadRasterizationOptions();
PdfOptions pdfOpts = new PdfOptions();
pdfOpts.setVectorRasterizationOptions(pdfCadOpts);
try {
img.save(tempFilePath + pdfFileName, pdfOpts);
} catch (Exception e) {
e.printStackTrace();
}
您可以尝试在终端使用以下示例代码吗?
public static void TestTextQuality(String srcFile)
{
Image img = null;
try {
img = Image.load(new FileInputStream(srcFile));
} catch (Exception e) {
e.printStackTrace();
}
CadRasterizationOptions pdfCadOpts = new CadRasterizationOptions();
//Setting Image text quality
pdfCadOpts.getQuality().setTextThicknessNormalization(true);
PdfOptions pdfOpts = new PdfOptions();
pdfOpts.setVectorRasterizationOptions(pdfCadOpts);
try {
img.save("Saved.pdf", pdfOpts);
} catch (Exception e) {
e.printStackTrace();
}
}
@mudassir.fayyaz
图纸文字用了新代码已经清晰了, 但是字体大小还是不对,导致相互重叠看不清楚,能否解决
附件是源图和转换后的对比
baf783dec28fe05afd6c8abd359d109.png (150.5 KB)
09b4d8d46fcc6f49e5e9b4bb636442a.png (62.9 KB)