Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scrolling & zooming SVG Viewer on Windows?

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!

like image 572
Eric the Red Avatar asked Sep 23 '09 03:09

Eric the Red


People also ask

What do u mean by scrolling?

1 : to move text or graphics up or down or across a display screen as if by unrolling a scroll. 2 : to progress, move, or be revealed as if by the unrolling of a scroll watch scenery scroll by large picture windows— David Yeadon. transitive verb. : to cause (text or graphics on a display screen) to move in scrolling.

What is social media scrolling?

'It's when you spend an extended length of time on social media with no purpose – rather than actively getting involved with social media (for example, by posting comments or messaging friends) – you are scrolling through your feed without giving it a second thought,' she continues.

Why is it called scrolling?

"Scrolling," as such, does not change the layout of the text or pictures but moves (pans or tilts) the user's view across what is apparently a larger image that is not wholly seen.


2 Answers

If you really do mean SVG, Inkscape should work.

like image 122
Matthew Talbert Avatar answered Oct 05 '22 23:10

Matthew Talbert


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.

like image 36
Spadar Shut Avatar answered Oct 06 '22 00:10

Spadar Shut