i am running ghostscript win64c under matlab on a tiff file in order to convert it to pdf. i need to save several such tiff files in one pdf file.
i use this command:
command = sprintf('gswin64c -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=%s -dBATCH %s', pdf_file, tifffilename); system(command);
i get the following error message:
GPL Ghostscript 10.02.1 (2023-11-01) Copyright (C) 2023 Artifex Software, Inc. All rights reserved. This software is supplied under the GNU AGPLv3 and comes with NO WARRANTY: see the file COPYING for details. Error: /undefined in II* Operand stack: Execution stack: %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1944 1 3 %oparray_pop 1943 1 3 %oparray_pop 1928 1 3 %oparray_pop 1801 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- Dictionary stack: --dict:746/1123(ro)(G)-- --dict:0/20(G)-- --dict:85/200(L)-- Current allocation mode is local Current file position is 4 GPL Ghostscript 10.02.1: Unrecoverable error, exit code 1
can you please help?
thanks a lot!!!
MAT