Search found 1 match

by Lincon
2019-05-10T00:55:58-07:00
Forum: PerlMagick
Topic: Transparency lost in PDF to PNG
Replies: 2
Views: 105659

Transparency lost in PDF to PNG

Hello everyone,,
I'm reading a PDF file (adobe illustrator) and trying to save it as png

$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 ...