This example shows how to image copy re-sampled in php gd.
This example shows how to image copy re-sampled in php gd.<?php
$filename
= 'image1.jpg';$percent
= 0.2;header(
'Content-type: image/jpeg');list
($width, $height) = getimagesize($filename);$new_width
= $width * $percent;$new_height
= $height * $percent;$image_p
= imagecreatetruecolor($new_width, $new_height);$image
= imagecreatefromjpeg($filename);imagecopyresampled(
$image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);imagejpeg(
$image_p, null, 100);?>
After running the program you will get the following output