09-21-2010 02:24 AM
Hi,
I use frequently 3D graphics to depict spectrograms
and the size of the pdf file when I export them is quite big.
Even for only one graph I get a pdf file of almost 2MB.
Is there any way to reduce the size of the exported pdf file?
Thanks
Yannis T.
09-21-2010 02:45 AM
Hello yannis,
you can use the following parameter to reduce the size of the PDF:
PDFResolution = "72 DPI" ' "2400 DPI" , "default" PDFOptimization = TRUE PDFFontsEmbedded = FALSE PDFJPGCompressed = "high" Call PicPDFExport(Path & " all at once.pdf")
Greetings
Walter
09-21-2010 07:39 AM
Hi Walter,
thanks for the reply.Your advise helped.
One variable though is not recognised and specifically
the variable "PDFOptimization".
Is that because of the version of DIADEM that I have? (I have DIADEM 11)
09-21-2010 07:45 AM
Hi yannis,
Yes, that's true. DIAdem 11.0 doesn't support PDFOptimisation - DIAdem 11.1 is the first version.
Greetings
Walter
PDFOptimization
09-21-2010 10:39 AM
Hi Yannis,
Also note that for DIAdem 2010 (11.2) and later the PDF file size is kept very small by default, without having to set all those parameters.
Brad Turpin
DIAdem Product Support Engineer
National Instruments
05-12-2022 09:47 AM
You can try this code to export 3D graphics to PSD
Export["figure.pdf", plot, "AllowRasterization" -> True,
ImageSize -> 360, ImageResolution -> 600]