> When the image is larger than the screen,whether in IE/Adobe plugin, > Firefox 2.0, or Squiggle, the part of the image that is offscreen is > truncated. There's no scroll, so I can't scroll down to see the > truncated part. And the print preview shows only the first (top)part > with no second page. > > What I would like is to be able to print the entire image, printing > out on 2 or more pages.
You may adjust the size to fit the canvas using a smart combination of height, width and viewbox attribute [1]. In the top-level SVG element: * Setting "height" and "width" attributes to 100%; * "viewbox" attribute [1] to match the desired visible area; * "preserveAspectRatio" [2] set to "xMidYMid meet". This will cause the image to fit to the visible area, which hopefully will also print as best as possible (no page breaking, though). > I tried the <pageSet><page> thing, but this made the image disappear > completely! I'm not sure if these are supported by any implementation... Hope this helps, Helder Magalhães [1] http://www.w3.org/TR/SVG/coords.html#ViewBoxAttribute [2] http://www.w3.org/TR/SVG/coords.html#PreserveAspectRatioAttribute ------------------------------------ ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ----Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

