SVG or other file to PDF/X-3

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
luismanuelmontoro
Posts: 1
Joined: 2018-08-09T02:14:01-07:00
Authentication code: 1152

SVG or other file to PDF/X-3

Post by luismanuelmontoro »

Hello i´m trying to transform a SVG to a PDF/X-3, I try with convert but i think i must to use ps2PDF to set -dPDFX , and if i used y have problems with the trimbox, it said

Code: Select all

 
 ps2pdf -dPDFX=true  ai.ai  ps2pdf2.pdf
GPL Ghostscript 9.07: TrimBox does not fit inside CropBox, not permitted in PDF/X-3, reverting to normal PDF output
Can you help me??.

I try this to.

Code: Select all

convert svg.svg pdf.pdf 
but i dont know if i have a option to specify to transform in PDFX.

THANKS A LOT
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: SVG or other file to PDF/X-3

Post by fmw42 »

I do not know. But be aware that Imagemagick is a raster processor. It does not do vector to vector processing. So your resulting PDF will be a rasterized SVG image put into a vector PDF shell. I doubt this is what you want.
Post Reply