Hello,
It's possible to define custom thumbnail ? If the answer is "no", change getThumb method is the good way ?
like :
`
$custom_th_path = $_SERVER['DOCUMENT_ROOT'] . WEBPATH . "/custom_thumbnails/";
if(file_exists($custom_th_path . $this->album->name . "/" . $this->filename)) {
return WEBPATH . "/custom_thumbnails/" . $this->album->name . "/" . $this->filename;
}
`
thanks !
(french user, sorry for my bad english
)
Comments
http://www.zenphoto.org/documentation/Zenphoto/_template-functions.php.html#functionprintCustomSizedImage
or for album thumbs this:
http://www.zenphoto.org/documentation/Zenphoto/_template-functions.php.html#functionprintCustomAlbumThumbImage
I want to use a image to thumbnail that's should be different than original image... Or use different crop image by image (to capture only one detail on original image).
thanks
what i am looking for is a way of maintaining a standardised thumbnail shape, but changing the crop point of the thumbnail to a custom part of the image.. eg so if i am taking a portrait photo, and the persons head is at the top of the portrait, being able to crop a square thumbnail so that the head is not cut off at the chin..
previously i have used menalto gallery, which has been slow and over complicated, but allowed custom thumbnails of any shape or size to be uploaded and edited separate to the main image within the admin page..