PHP ile Boyutlandırıldı bir görüntü kaydetmek

0 Cevap php

Benim Facebook uygulamasını geliştirmeye çalışıyorum. Ben sunucusundaki bir dizine kaydedin, sonra bir görüntüyü yeniden boyutlandırmak gerekiyor. Bu benim yeniden boyutlandırmak zorunda kodu:

<?php
// The file
$filename = 'test.jpg';
$percent = 0.5;

// Content type
header('Content-type: image/jpeg');

// Get new dimensions
list($width, $height) = getimagesize($filename);
$new_width = $width * $percent;
$new_height = $height * $percent;

// Resample
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);

// Output
imagejpeg($image_p, null, 100);
?>

Benim soru nasıl bu resized resmi kaydetmek istiyorsunuz, nedir? Ben gerekir? manipulate the resized image without saving it için bir yolu var mı?

0 Cevap