DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

diadem 3d graphics

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.

0 Kudos
Message 1 of 6
(3,843 Views)

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

 

0 Kudos
Message 2 of 6
(3,842 Views)

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)

0 Kudos
Message 3 of 6
(3,838 Views)

Hi yannis,

 

Yes, that's true. DIAdem 11.0 doesn't support PDFOptimisation - DIAdem 11.1 is the first version.

 

Greetings

Walter

PDFOptimization
0 Kudos
Message 4 of 6
(3,836 Views)

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

0 Kudos
Message 5 of 6
(3,826 Views)

You can try this code to export 3D graphics to PSD

Export["figure.pdf", plot, "AllowRasterization" -> True, 
    ImageSize -> 360, ImageResolution -> 600]

 

0 Kudos
Message 6 of 6
(1,220 Views)