Can you update the plugin to only resize/fill specific image sizes?
I only want to resize woocommerce product images, all the other sizes have to stay untouched.
Thanks!
]]>great tool, much better then original resize IMO. just one bug though. transparent gifs still resolve to black bg regardless of color set. here is the code updated to fix this issue:
$newpic = imagecreatetruecolor(round($new_w), round($new_h));
$fillbg = $this->j_hex2RGB($fillcolor);
$backgroundColor = imagecolorallocate($final, $fillbg['red'], $fillbg['green'], $fillbg['blue']);
imagefill($newpic, 0, 0, $backgroundColor);
imagecopyresampled($newpic, $source, 0, 0, 0, 0, $new_w, $new_h, $src_w, $src_h);
$final = imagecreatetruecolor($width, $height);
imagefill($final, 0, 0, $backgroundColor);
imagecopy($final, $newpic, (($width - $new_w)/ 2), (($height - $new_h) / 2), 0, 0, $new_w, $new_h);
if (imagejpeg($final, $destination, $quality)) {
return true;
}
]]>
Hi,
I know this plugin hasn’t updated for a long time.
But does anyone know a hack to fill in some created image-sizes, and not the standard image sizes, thumbnail, medium and large?
Regards.
]]>Hi!
Any plans for updating this plug-in? Since there looks like there’s absolutely no other plug-in doing this, this one is almost revolutionary!
Kind regards,
Espen.
Hi jegbagus,
when the plugin is active I get “HTTP error” on image import on
Ubuntu server 12.04 and WP3.5.1
Thanks,
Giuseppe
Hi,
I was an early beta-tester for this plugin – it has worked great from the get-go.
When WordPress cropped the images on it’s own, my users would end up with some weird, not-very-nice, poorly cropped pictures on their posts.
With this plugin, images are automatically resized – in their entirety – with any unused portion of the image filled in with a background color, as the images are uploaded. So instead of some poorly positioned crop, the whole picture is used, but with a standard, across the board, size, so all the images appear correctly in each post.
Anyway – if you need this functionality, you’ll know what I mean. This plugin has work very well from the get go. Set it and forget it ??
Chris
]]>