Page 1 of 1

exif data with image

Posted: 20 Mar 2012, 14:56
by psylib
Hi,

I want to put the medium thumb in the exif iframe. (in a table with two td, one for image and the other for the exif data)
I have the path of the full image but i want to have the path of the medium thumb.
Is there a helper method for that?
Does anyone something like that? and how???

thanks..

Re: exif data with image

Posted: 22 Mar 2012, 00:54
by Jan
Hi, no :-(, I think you need to load info about the image (path to medium thumbnail) .e.g. like in detail window and then paste it to output.

Jan

Re: exif data with image

Posted: 22 Mar 2012, 13:57
by psylib
Thanks Jan,
i will try this soon.

Re: exif data with image

Posted: 22 Mar 2012, 14:55
by psylib
i solved with :

$w=27;
$subs=substr($this->originalFile, $w);
$subs2=substr(strrchr($this->originalFile, '/') ,1);
$subs3= 'thumbs/phoca_thumb_l_'.$subs2;
$substart=substr($subs,0,strlen($subs)-strlen($subs2));
$last =$substart.$subs3;

Re: exif data with image

Posted: 31 Mar 2012, 00:21
by Jan
Ok