I'm trying to insert an image that has a transparent background into a PDF document using ODS. When I check the created PDF file, the image is using a white background. My code looks like this:
ods escapechar="~";
ods text="~{STYLE [preimage='transparent_test.gif?width=3.62in&height=1in']}";
Use an
SVGfile with a transparent background instead:It does not seems to work with either
gifnorpngfiles, butsvgshould work fine.Here is the SVG image (external link as neither SO nor imgur support SVG):
http://svgur.com/s/3FU
goptions transparency;seemed like it may have shown promise but based on my testing it had no effect.