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');