Как сжать файл не меняя размер?
$photo_new = imagecreatefrompng($path.$filename);
imagesavealpha($photo_new, true);
imagepng($photo_new, $path.'rre.png', 9);
Че то так не катит. На 1-2 кб меньше и все
$photo_new = imagecreatefrompng($path.$filename);
imagesavealpha($photo_new, true);
imagepng($photo_new, $path.'rre.png', 9);
$o_im = imageCreateFromPNG($_FILES['file']['tmp_name']);
$width = imagesx($o_im);
$height = imagesy($o_im);
// Без измениня размера
$newwidth = $width;
$newheight = $height;
$t_im = imageCreateTrueColor($newwidth,$newheight);
imagecopyresampled($t_im, $o_im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
ImagePNG($t_im, $path . $_FILES['file']['name'], 9);