Bug PNG Icon Conversion

Status
Not open for further replies.
If you open dbtech/downloads/core/class_resizer.php

On line 75 you will see

Code:
            imagecopyresampled($this->newimage, $this->image, 0, 0, 0, 0, 100, 100, $this->width, $this->height);

before that add

Code:
            imagealphablending($this->newimage, false);
            imagesavealpha($this->newimage, true);

So you will end up with something like this

Code:
        if ($this->continue == true) {

            imagealphablending($this->newimage, false);
            imagesavealpha($this->newimage, true);
            imagecopyresampled($this->newimage, $this->image, 0, 0, 0, 0, 100, 100, $this->width, $this->height);

             return $this->output($filename);
        } else {
            return false;
        }
 
Status
Not open for further replies.

Legacy vBDownloads

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
1,716
Customer rating
0.00 star(s) 0 ratings
Back
Top