| Author |
Topic  |
|
|
AtiLaw
UK
Posts |
Posted - 01/07/2004 : 09:44:18 AM
|
Im having difficulty finding the labtalk command to allow me to export/saving a layout to a PDF file format. I have read through the help and so on but still cant find a command that works. Anyone know the command?? |
|
|
AtiLaw
UK
Posts |
Posted - 01/07/2004 : 10:07:01 AM
|
OK, so panic over now... I managed to figure it out!!
If anyone wants to know the answer it is:
export.image(filename, filetype);
So for me it was something like export.image(file.pdf, pdf);
Thanks anyway people.
|
 |
|
|
greg
USA
1380 Posts |
Posted - 01/09/2004 : 10:26:49 AM
|
The IMAGE method of the EXPORT object uses the old ImageStream library for exporting PDF files. We were not happy with the results of this third-party export, so we developed our own PDF export filter which you can use if you have 7.0 SR1 or later:
image.filename $= D:\TEST2.PDF; // Assign path & filename image.ShowOptions = 0; // Don't display Options dialog image.export.pagedpi(PDF, 96, 24, 0); // FileType , DPI , ColorBits , 0
|
 |
|
| |
Topic  |
|
|
|