I installed the latest version of ghostscript which is 10.03.1 (2024-05-02)
I am very new to Ghostscript (first time heard of it today) and i just downloaded it forr debugging purposes because i have a program that uses gsdll64.dll
to create a with embedded xml file.
So the command that is executed uses the following parameters
-P
-dPDFA=3
-sColorConversionStrategy=RGB
-sDEVICE=pdfwrite
-oC:UsersMyUserDesktopoutput.pdf
-dPDFACompatibilityPolicy=1
-dRenderIntent=3
-sGenericResourceDir="C:UsersMyUserAppDataLocalTemp/"
C:UsersMyUserDesktopMyPdf.pdf
I know there is no space between -oC:UsersMyUserDesktopoutput.pdf
but thats how the program builds it and it doesn’t seem to bother ghostscript
The Error i get on executing is:
invalid operator used in text block
Also there are some warnings
The MyPdf.pdf
is created
What I found out so far is that if i remove -sGenericResourceDir="C:UsersMyUserAppDataLocalTemp/"
from the arguments everything works…
But I still wonder what it is intended for and if that might not break something else?