Transparency lost in PDF to PNG
Posted: 2019-05-10T00:55:58-07:00
Hello everyone,,
I'm reading a PDF file (adobe illustrator) and trying to save it as png
doesn't resolve the problem for the semi-transparency.
What are the correct PerlMagick (ver: 6.5.1.1) settings to use?
Sincerly
I'm reading a PDF file (adobe illustrator) and trying to save it as png
Code: Select all
$img->read('logo.ai');
$img->write('logo.png');
The probleme is that I'm loosing all the transparency and semi-transparency
using instead:
$img->read('logo.ai');
$img->Transparent('color' => 'white');
$img->write('logo.png');
What are the correct PerlMagick (ver: 6.5.1.1) settings to use?
Sincerly