PDA

View Full Version : resizing images for forum posting


Puck
August 4, 2007, 07:43 AM
i used to have a little script in my old laptop that allowed for images to be rescaled for posting in forums so they don't make the thread look all bloated out. unfortunately, i can't find the script anywhere. could someone please dig up an alternative way.

for example, the image i want to show up in thread is 1024x768 and i just want it to be something along the lines of 400x200. how could one do this?

Kabir
August 4, 2007, 03:05 PM
Our forum allows a bit of HTML. You can use the following code:

<img src="image.jpg" width="400" height="200">

Question to Nasif bhai: Can't we our "insert image" button functionality to extend to do image size settings? Most CMS these days allow you to do it, I'm not sure if this is a possibility with our forum environment. It's just a simple popup that allows you to do it!

Puck
August 4, 2007, 06:23 PM
Our forum allows a bit of HTML. You can use the following code:

<img src="image.jpg" width="400" height="200">

Question to Nasif bhai: Can't we our "insert image" button functionality to extend to do image size settings? Most CMS these days allow you to do it, I'm not sure if this is a possibility with our forum environment. It's just a simple popup that allows you to do it!

thanks very much!