Jump to content

thumbnail help


davieboy

Recommended Posts

[code=php:0]
$save = '/home/****/public_html/img1/thumbs/11694105066.jpg';
$file = '/home/*****/public_html/img1/11694105066.jpg';
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($file) ;
$modwidth = '200';
$modheight = '133';
$tn = imagecreatetruecolor($modwidth, $modheight) ;
$image = imagecreatefromjpeg($file) ;
imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height) ;
imagejpeg($tn, $save, 100) ;
[/code]

not producing or saving any thumbs, have recked my brains out

David
Link to comment
https://forums.phpfreaks.com/topic/35224-thumbnail-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.