Making images scalable for Rational Rhapsody reports using the Rational Publishing Engine when outputting to PDF
When i try to pull Class diagram which have a lot of operation and generating PDF ouput is coming in blur and Word coming high quality. I have used path.replace(jpg , EMF ) script but not seeing the quality in PDF format.But The sequence diagram i used same logic and getting quality high in pdf report.Why it have different behavior for class diagram and sequence when i used same logic n same pdf report?
One answer
Comments
Ya i have done that .. the generated word i have exported as pdf the image qulity is same as in word means its clear. But the generated pdf by rpe still have unclear. It is observed that when i gave more operation around 15 in class diagram it have issue.
ActiveDocument.ExportAsFixedFormat OutputFileName:= _
Replace(ActiveDocument.FullName, ".doc", ".pdf") , _
ExportFormat:=wdExportFormatPDF, OpenAfterExport:=False, OptimizeFor:= _
wdExportOptimizeForPrint, Range:=wdExportAllDocument, Item:= _
wdExportDocumentContent, IncludeDocProps:=False, KeepIRM:=True, _
CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _
BitmapMissingFonts:=True, UseISO19005_1:=True
End Sub
Where to use this macro as i am not using any style sheet ?I didn't tried macros till now?Can you help with steps?