views:

510

answers:

3

We need to view some very large (7200+ pixels) SVGs. Every SVG viewer I've found, including modern web browsers, does not allow us to view the entire image. There aren't any scrollbars, and we do not have the option to zoom.

Is an open source / free application available that could help with viewing the entire SVG image? Thanks!

+2  A: 

If you really do mean SVG, Inkscape should work.

Matthew Talbert
A: 

If you only need a player, you could also use Examotion's Renesis Standalone Player.

You can view even large svgs in orginal size, pan and zoom.

Drawback: No Scrollbars - you can only pan the image by dragging and it's not really fast.

räph
+1  A: 

You need to add viewBox attribute to the <svg> element and wievers will scale the image to the available viewport.

<svg viewBox='0 0 7200 7200' ... >

You may want to try Opera SVG Viewer to preview multiple svg files at once.

Spadar Shut