I have a trouble.
I want to convert from HPGL2 to PDF.
However, it fails if the CAD-image is large.
(Returned a blank pdf)
Code: Select all
CADToPDF pdf = new CADToPDF(cadImage);
pdf.Settings.PageWidth = cadImage.AbsWidth;
pdf.Settings.PageHeight = cadImage.AbsHeight;
pdf.Settings.IsShowLineWeight = true;
pdf.Settings.LineWeightScale = 0.05;
pdf.SaveToFile(filename);
size of 5945 * 841mm(size:5A0) CAD-Image is fails.
It reproduce in the demo program,
I will probably success, If I can change the Export PDF version(1.5 or higher).
But I do not know how to configure it.
Please help me.
Using product is CAD Import .NET 9
Mita,