If you look at the file, it seems just fine - however, you can see the color re-appear when loaded by Imagick:
Code: Select all
<?php
$im = new Imagick('bg.png');
header("Content-Type: image/png");
echo $im;
How can I make this 'real' transparency?
Thank you!