| 123456789 |
- // Draw all pages in a document and save them as PNG files.
- var doc = Document.openDocument(scriptArgs[0]);
- var n = doc.countPages();
- for (var i = 0; i < n; ++i) {
- var page = doc.loadPage(i);
- var pixmap = page.toPixmap(Matrix.identity, ColorSpace.DeviceRGB);
- pixmap.saveAsPNG("out" + (i+1) + ".png");
- }
|