我正在使用PHP构建图库。 我决定将EasyPhpThumbnail集成到我的项目中。
我遇到的问题是设置。
也许有些人之前使用过此类,可以分享经验。如果与其他班级有任何建议 - 我很乐意听到他们的意见。
我想动态剪裁上传的图片。我想将缩略图大小设置为特定的宽度和高度。
有什么建议吗?
我的代码现在看起来像这样:
$thumb = new Classes_Images_EasyThumbMaker();
$thumb -> Cropimage = array(1,0,20,20,35,35); // maybe something should be set here.
$thumb -> Thumbwidth = 205;
$thumb -> Thumbheight = 156;
$thumb -> Quality = 100;
// Full path to the images
$pathToImage = 'uploads/portfolio/original/' . basename($form->image->getFileName());
//$thumb -> Chmodlevel = '0755';
$thumb -> Thumblocation = 'uploads/portfolio/thumb/';
$thumb -> Thumbprefix = 'thumb_';
// Create the thumbnail and save it
$thumb ->Createthumb($pathToImage, 'file');
答案 0 :(得分:0)
您可能需要使用文件的绝对路径,如下所示:
// Your full path to the images
$dir = str_replace(chr(92),chr(47),getcwd()) . 'uploads/' ;