Image resizing not working with png images
- by user304828
it not work with png
created a thumb png but haven't data , like null data :D
with jpg , jpeg still working without error
why ?
function thumbnail($pathtoFile,$thumWidth,$pathtoThumb) {
//infor of image
$infor = pathinfo($pathtoFile);
// Setting the resize parameters
list($width, $height) = getimagesize($pathtoFile);
…