Summary: | Png-images of covers lost transparency | ||
---|---|---|---|
Product: | Koha | Reporter: | Serhij Dubyk <dubyk> |
Component: | Tools | Assignee: | Galen Charlton <gmcharlt> |
Status: | In Discussion --- | QA Contact: | |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | chris, dubyk, veron |
Version: | unspecified | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Attachments: | Small changes in C4/Images.pm |
Description
Serhij Dubyk
2012-05-14 20:35:16 UTC
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? |