I have an existing svg (note: version 1) with colors defined in the RGB colorspace, like this fill="#e6dfd9"
.
This svg should be used in a printable PDF, for which I'm currently using TCPDF. What would be the best approach to take to convert the svg to cmyk to be print-ready?
Couldn't find a solution using TCPDF for this, so thinking about using Imagemagick to convert the SVG first to cmyk, than use TCPDF to convert to PDF.
Already tried:
- Using this syntax inside the SVG, which states both a rgb and cmyk color:
rgb(255,0,255) device-cmyk(0.03, 0.90, 0.80, 0.00)
. Colors aren't rendered correctly, this might be due to the svg version.