Images of covers must preserve transparency of png-images. This is useful for example for the covers of CD/DVD disks.
Created attachment 9573 [details] [review] Small changes in C4/Images.pm Replace my $newimage = $image->clone; by my $newimage = GD::Image->new( $width_reduce, $height_reduce, 1 ); $newimage->alphaBlending(0); $newimage->saveAlpha(1);
I like the idea, but do we need the commented out transparency lines? Can we safely remove those?
Still waiting on answer to the question before signoff
(In reply to comment #2) > I like the idea, but do we need the commented out transparency lines? > > Can we safely remove those? Yes.
Still valid?