How can you thumbnail an uploaded image on Stack Overflow?

share|improve this question

2 Answers

up vote 21 down vote accepted

Images embedded in your post are already displayed to be 630 pixels wide on the regular site, or 90% on the mobile site, to fit the page layout. If that's not enough, or if you want to reduce the download file size too, you have a couple options:

  • Use the HTML syntax for embedding images, which allows for height and width parameters. The scaling is done by the browser, and the whole image is still downloaded.
  • Create the thumbnail yourself using the image manipulation tool of your choice.
  • Invoke imgur's black magic to create the thumbnails for you.

imgur's thumbnail feature

If you uploaded your image via the editor's upload function, you can let imgur do the work for you. (If they reside on your own imgur account, this will still work, but you really should use the branded upload.)

You do this by appending l, m or s to the image code.

Consider this cat. It is too big to fit the page, and its URL is http://i.stack.imgur.com/mZCux.jpg. With the thumbnail feature, we can do this:

Notes

  • Thumbnails will always be JPEGs, so if the original image isn't, you should change the file extension as well.
  • l and m have no effect if the image is already less than 640 and 320 pixels wide, respectively.
  • s will force the image to be a 90×90 square, downscaling/upscaling and cropping it in the process if necessary.

share|improve this answer

There now is a script that aids you in creating thumbnails:

Thumbnail Uploader

It adds an improved "upload" dialog:

enter link description here

The large/medium/small options use the imgur hacks described above. The height/width creates an HTML image tag (leaving one blank locks aspect ratio).

And, of course, there's a "link to full size" option for thumbnailing.

share|improve this answer
Nice! Any chance it can also ask for a title? – Arjan Jun 30 '12 at 12:47
@Arjan: Yeah, I remember keeping a placeholder for the title in the script, so adding this shouldn't be hard. I'll look into it later. re:HTML fixed, thanks :) – Manishearth Jun 30 '12 at 12:56

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged