دوستان یه کد GD می خوام که ابعاد تصویر آپلود شده رو به 100 در 100 تغییر بده؟
Printable View
دوستان یه کد GD می خوام که ابعاد تصویر آپلود شده رو به 100 در 100 تغییر بده؟
منطور از GD چیه؟ ریسایز کنه تصاویر رو؟ ...
[PHP]<?php function resize_image($file, $w, $h, $crop=FALSE) { list($width, $height) = getimagesize($file); $r = $width / $height; if ($crop) { if ($width > $height) { $width = ceil($width-($width*($r-$w/$h))); } else { $height = ceil($height-($height*($r-$w/$h))); } $newwidth = $w; $newheight = $h; } else { if ($w/$h > $r) { $newwidth = $h*$r; $newheight = $h; } else { $newheight = $w/$r; $newwidth = $w; } } $src = imagecreatefromjpeg($file); $dst = imagecreatetruecolor($newwidth, $newheight); imagecopyresampled($dst, $src, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); return $dst; } $img = resize_image(‘/path/to/some/image.jpg’, 150, 150);[/PHP]
[ برای مشاهده لینک ، با نام کاربری خود وارد شوید یا ثبت نام کنید ]