chanthuyen
05-10-2006, 10:00 PM
demo here
http://www.vietlyso.com/forums
After import xml file
Open include/class_bbcode.php
a. Search for :
return '<img src="' . $link . '" border="0" alt="" />';
b. Replace with this :
$kichthuoc = getimagesize($link);
if ($kichthuoc[0]>800)
{
return '<a class="thumbnail" href="' . $link . '" target="_blank"><img src="' . $link . '" width="794" style="border: 1px dashed #993333;padding: 2px">
<span>Image with real size. Click on the image to open in new window...<br /><img src="' . $link . '"/></a></span>';
}
else
{
return '<img src="' . $link . '" border="0" alt="" />';
}
c. You can change max-with by what you like (default is : 800).
If you like this mod, you can download the imageresize mod.zip file. ( Work fine in ie,ff and opera)
http://www.vietlyso.com/forums
After import xml file
Open include/class_bbcode.php
a. Search for :
return '<img src="' . $link . '" border="0" alt="" />';
b. Replace with this :
$kichthuoc = getimagesize($link);
if ($kichthuoc[0]>800)
{
return '<a class="thumbnail" href="' . $link . '" target="_blank"><img src="' . $link . '" width="794" style="border: 1px dashed #993333;padding: 2px">
<span>Image with real size. Click on the image to open in new window...<br /><img src="' . $link . '"/></a></span>';
}
else
{
return '<img src="' . $link . '" border="0" alt="" />';
}
c. You can change max-with by what you like (default is : 800).
If you like this mod, you can download the imageresize mod.zip file. ( Work fine in ie,ff and opera)