<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Advanced guestbook Thumbnails resize picture"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Advanced guestbook Thumbnails resize picture"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Advanced guestbook Thumbnails resize picture</title>
				<description><![CDATA[ When users post a picture size widthxhight, no matter what size. I want to get control of the picture went people click on it. I would like to resize the image like 600x500, and I don't to display the whole image size like 2000x2555. It's too big.<br /> <br /> I know I can control people to upload picture, but I want then to feel free to upload any picture. I just want to resize the picture went they click on it.<br /> <br /> Help any one please,<br /> <br /> Thanks, <img src="https://proxy2.de/forum//images/smilies/2786c5c8e1a8be796fb2f726cca5a0fe.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23592.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23592.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 15:49:43]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yo have two options. Physically resize the image on upload if it's to big or use HTML to resize the image in the browser.<br /> <br /> There is a third option and I may take a look at writing that mod for AG.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23593.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23593.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 15:59:30]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Yo have two options. Physically resize the image on upload if it's to big or use HTML to resize the image in the browser.<br /> <br /> There is a third option and I may take a look at writing that mod for AG.[/quote]<br /> <br /> <br /> That's what I want to do, I want to resize it manually, but I don't know what file is the pop up, so I can make the change. Do you know the file?<br /> <br /> I found the file, it a js function, I played around with and i realized that the original pic need to resized, the same way they rename it, and get a small vesion of the original. I keep looking.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23594.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23594.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 16:15:58]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Just right click on it in the pop up window and select properties.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23595.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23595.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 17:57:54]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Just right click on it in the pop up window and select properties.[/quote]<br /> <br /> Yea, but there is nothing that I can do because that function is calling the original image with the original size, and that what I want, I want resize the original. Any Idea?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23596.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23596.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 20:23:30]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="lasclavellinas"][quote="Carbonize"]Just right click on it in the pop up window and select properties.[/quote]<br /> <br /> Yea, but there is nothing that I can do because that function is calling the original image with the original size, and that what I want, I want resize the original. Any Idea?[/quote]<br /> <br /> This is the function that need to be changed but I don;t where: from file image.class.php<br /> <br />  function create_thumbnail($source,$destination='') {<br />         $img_filesize = (file_exists("$source")) ? filesize("$source") : false;<br />         $destination = trim($destination);<br />         if (strstr($destination, "/") || strstr($destination, "\\")) {<br />             $new_file = $destination;<br />         } elseif ($destination=='') {<br />             $new_file = $this-&gt;destdir."/".$this-&gt;prefix.basename($source);<br />         } else {<br />             $new_file = $this-&gt;destdir."/".$this-&gt;prefix.$destination;<br />         }<br />         if (!$img_filesize || $img_filesize &lt;= $this-&gt;min_filesize) {<br />             return false;<br />         }<br />         $size = GetImageSize("$source");<br />         $new_size = $this-&gt;get_img_size_format($size[0],$size[1]);<br />         if ($this-&gt;is_imagick()) {<br />             if (is_array($size) &amp;&amp; count($size)&gt;0) {<br />                 exec($this-&gt;imagick." -quality 90 -antialias -scale $new_size[0]x$new_size[1] $source $new_file");<br />             }<br />         } else {<br />             $type = "$size[2]";<br />             if (isset($this-&gt;supported_types["$type"])) {<br />                 switch ($type) {<br />                     case "1" :<br />                         $im = ImageCreateFromGIF("$source");<br />                         if (function_exists("imagecreatetruecolor")) {<br />                         	$new_im = imagecreatetruecolor($new_size[0],$new_size[1]);<br />                         	imagecopyresampled($new_im,$im,0,0,0,0,$new_size[0],$new_size[1],$size[0],$size[1]);<br />                         } else {<br />                         	$new_im = ImageCreate($new_size[0],$new_size[1]);<br />                         	ImageCopyResized($new_im,$im,0,0,0,0,$new_size[0],$new_size[1],$size[0],$size[1]);<br />                     	}<br />                         ImageGIF($new_im,$new_file);<br />                         break;<br />                     case "2" :<br />                         $im = ImageCreateFromJPEG("$source");<br />                         if (function_exists("imagecreatetruecolor")) {<br />                         	$new_im = imagecreatetruecolor($new_size[0],$new_size[1]);<br />                         	imagecopyresampled($new_im,$im,0,0,0,0,$new_size[0],$new_size[1],$size[0],$size[1]);<br />                         } else {<br />                         	$new_im = ImageCreate($new_size[0],$new_size[1]);<br />                         	ImageCopyResized($new_im,$im,0,0,0,0,$new_size[0],$new_size[1],$size[0],$size[1]);<br />                     	}<br />                         ImageJPEG($new_im,$new_file,90);<br />                         break;<br />                     case "3" :<br />                         $im = ImageCreateFromPNG("$source");<br />                         if (function_exists("imagecreatetruecolor")) {<br />                         	$new_im = imagecreatetruecolor($new_size[0],$new_size[1]);<br />                         	imagecopyresampled($new_im,$im,0,0,0,0,$new_size[0],$new_size[1],$size[0],$size[1]);<br />                         } else {<br />                         	$new_im = ImageCreate($new_size[0],$new_size[1]);<br />                         	ImageCopyResized($new_im,$im,0,0,0,0,$new_size[0],$new_size[1],$size[0],$size[1]);<br />                     	}<br />                         ImagePNG($new_im,$new_file);<br />                         break;<br />                 }<br />             }<br />         }<br />         return (file_exists("$new_file")) ? true : false;<br />     }]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23597.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23597.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 20:27:28]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Question is would you want the image resized<br /> 1 - Physically when the image is uploaded<br /> 2 - By HTML when the image is viewed]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23598.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23598.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 21:54:31]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Question is would you want the image resized<br /> 1 - Physically when the image is uploaded<br /> 2 - By HTML when the image is viewed[/quote]<br /> <br /> I guess:<br /> By HTML when the image is viewed<br /> <br /> It should be the same by <br /> Physically when the image is uploaded<br /> <br /> when the image is viewed, yeap.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23599.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23599.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 22:37:50]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="lasclavellinas"][quote="Carbonize"]Question is would you want the image resized<br /> 1 - Physically when the image is uploaded<br /> 2 - By HTML when the image is viewed[/quote]<br /> <br /> I guess:<br /> By HTML when the image is viewed<br /> <br /> It should be the same by <br /> Physically when the image is uploaded<br /> <br /> when the image is viewed, yeap.[/quote]<br /> <br /> I think this file need to be modified user_pic.php<br /> <br /> &lt;a href="javascript:gb_picture('$row[p_filename]',$row[width],$row[height])"&gt;&lt;img src="$GB_PG[base_url]/$GB_UPLOAD/$row[p_filename]" align="left" border="0" $new_img_size[2]&gt;&lt;/a&gt;<br /> <br /> where: $row[p_filename]',$row[width],$row[height] are the size of the original file.<br /> <br /> May be some condition will take care it?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23600.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23600.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 22:55:45]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ What I am saying is you can have PHP physically resize the picture when it is uploaded or you can just have the persons web browser resize it by putting the desired size into the img tag. I just need to know which so I can write the mod although the HTML method is probably the easiest.<br /> <br /> I did write a mod for Lazarus that used Lytebox ( <a class="snap_shots" href="http://dolem.com" target="_blank" rel="nofollow">http://dolem.com</a> ) to display the images. As this will resize images that are to large it may suit your needs.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23601.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23601.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 23:07:27]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]What I am saying is you can have PHP physically resize the picture when it is uploaded or you can just have the persons web browser resize it by putting the desired size into the img tag. I just need to know which so I can write the mod although the HTML method is probably the easiest.<br /> <br /> I did write a mod for Lazarus that used Lytebox ( <a class="snap_shots" href="http://dolem.com" target="_blank" rel="nofollow">http://dolem.com</a> ) to display the images. As this will resize images that are to large it may suit your needs.[/quote]<br /> <br /> What make your life easier would be fine with me.<br /> I'll appreciated it.<br /> <br /> Thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23602.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23602.php</link>
				<pubDate><![CDATA[Wed, 7 Nov 2007 23:12:58]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="lasclavellinas"][quote="Carbonize"]What I am saying is you can have PHP physically resize the picture when it is uploaded or you can just have the persons web browser resize it by putting the desired size into the img tag. I just need to know which so I can write the mod although the HTML method is probably the easiest.<br /> <br /> I did write a mod for Lazarus that used Lytebox ( <a class="snap_shots" href="http://dolem.com" target="_blank" rel="nofollow">http://dolem.com</a> ) to display the images. As this will resize images that are to large it may suit your needs.[/quote]<br /> <br /> What make your life easier would be fine with me.<br /> I'll appreciated it.<br /> <br /> Thanks[/quote]<br /> <br /> So, by when you will have it? let me know, thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23608.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23608.php</link>
				<pubDate><![CDATA[Fri, 9 Nov 2007 14:52:42]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Sorry got sidetracked by work. Email me to remind me.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23609.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23609.php</link>
				<pubDate><![CDATA[Fri, 9 Nov 2007 16:36:40]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Sorry got sidetracked by work. Email me to remind me.[/quote]<br /> <br /> I had sent you an email, let me know]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23616.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23616.php</link>
				<pubDate><![CDATA[Mon, 12 Nov 2007 22:47:09]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ And I have replied twice. You not get them?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23617.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23617.php</link>
				<pubDate><![CDATA[Mon, 12 Nov 2007 23:01:57]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]And I have replied twice. You not get them?[/quote]<br /> <br /> it says I don't have any messages.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23623.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23623.php</link>
				<pubDate><![CDATA[Tue, 13 Nov 2007 15:32:28]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]And I have replied twice. You not get them?[/quote]<br /> <br /> Hey - Thanks man, you're man. It's ok.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23627.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23627.php</link>
				<pubDate><![CDATA[Wed, 14 Nov 2007 22:50:23]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Still not received my emails?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23629.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23629.php</link>
				<pubDate><![CDATA[Thu, 15 Nov 2007 07:37:58]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Still not received my emails?[/quote]<br /> <br /> I got it.<br /> <br /> Thanks,]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23630.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23630.php</link>
				<pubDate><![CDATA[Thu, 15 Nov 2007 15:09:49]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="lasclavellinas"][quote="Carbonize"]Still not received my emails?[/quote]<br /> <br /> I got it.<br /> <br /> Thanks,[/quote]<br /> <br /> Do I have to reply you back with the email you send me? sorry  <img src="https://proxy2.de/forum//images/smilies/2786c5c8e1a8be796fb2f726cca5a0fe.gif" />, don't get it. At same time I have a question for you: Do you what the difference between Advanced Guestbook.0 v2.4.1 and and v2.4.2-5130fix, I'm getting emails to upgrade, but I don't want to.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23631.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23631.php</link>
				<pubDate><![CDATA[Thu, 15 Nov 2007 17:54:25]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'll answer this in the other thread. As to the emails I am asking if you received my email with the files in it.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23633.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23633.php</link>
				<pubDate><![CDATA[Thu, 15 Nov 2007 19:21:38]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]I'll answer this in the other thread. As to the emails I am asking if you received my email with the files in it.[/quote]<br /> <br /> Yes, I received the file, it's working good.<br /> <br /> Thanks,]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6963/23642.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6963/23642.php</link>
				<pubDate><![CDATA[Tue, 20 Nov 2007 17:48:36]]> GMT</pubDate>
				<author><![CDATA[ lasclavellinas]]></author>
			</item>
	</channel>
</rss>