I am unable to upload SVG image files to StackOverflow. So I would like to know why it is blocked while other image formats are allowed. SVG images are useful for diagrams such as tree diagrams for algorithm discussions.

link|improve this question

40% accept rate
3  
So just convert them to PNG. Problem solved. – The Establishment May 25 '11 at 5:08
feedback

3 Answers

up vote 3 down vote accepted

Stack Exchange supports image uploading by using an external service (imgur) which does not support vector images.

You'll need to convert your SVG into a raster format (PNG is probably the best choice for most vector images, but JPG, GIF, and even BMP are supported) before uploading them to the provided service.

Stack Exchange is not interested in building an image hosting service (which is why they use imgur) so it's unlikely that they will either create one, or encourage imgur to support vector image formats.

However, if you find a free vector image hosting service that can handle the load Stack Overflow puts on such a service, and provides an API that is as simple and easy to include as imgur's, then you might be able to convince Stack Exchange, Inc, to include support for your request.

Alternately you should consider going to imgur and requesting that they support vector image formats. It would be ideal if they did the hard work, because, using browser detection methods, they could also support browsers that don't have SVG support by rendering the image prior to display, or they could even render it on upload and only store the rendered image (thus not affecting their normal workflow since it's simply a raster image after upload and conversion).

Unless you make it trivial for Stack Exchange to include in their code, you are unlikely to get much support for your feature request.

link|improve this answer
That is asking end users of a product or service to supply an implementation, and constraining it further with vaguely defined words such as "easy". Not implementing it due to lack of browser support seems like a more reasonable rationale for saying "will not implement". – bgoodr May 26 '11 at 20:28
Marking as answer as it was actually helpful. Thanks Adam. – bgoodr May 26 '11 at 20:34
feedback

StackOverflow images are hosted by imgur, and right now imgur doesn't support SVGs.

That said, it might be possible to just use them for binary storage and render the SVGs correctly here?

link|improve this answer
feedback

I'd imagine part of the reason is that Microsoft only support SVG since IE9, and most people use IE as their browser but have not upgraded to 9.

Examples of browser usage statitistics: http://www.w3counter.com/globalstats.php, http://gs.statcounter.com/#browser_version-ww-monthly-201004-201104-bar

Getting SVG support into IE8 would require a JS/flash plugin like SVG Web, which would cause significant bandwidth usage for an infrequent feature.

Either that or take the SVG markup and return a PNG. But that sounds like a lot of work for a Q&A website to undertake.

link|improve this answer
Browser usage for Stack Overflow itself tends more heavily towards Firefox, Chrome, and later versions of IE. – Adam Davis May 25 '11 at 13:05
feedback

You must log in to answer this question.

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