Hi,
De : globus <375gnu@...5...>
Can anybody explain what do "Enable viewboxing" & "Group collapsing" mean (scour extension)? I think the latter one means "to remove inner groupping" (<g><g><g>image data</g></g></g> -> <g>image data</g>). Am I correct?
Correct. But it only works when the groups have no id... which is, AFAIK, impossible with Inkscape (each element has an id attribute). Thus you also need to use the "remove ids" option if you want it to work correctly.
I'm confused with "size image to 100%/100%", cause for me 100% means "real size", but images saved with scour extansion have zoom != 100%, they are zoomed in such way that their page fits the window.
It is not directly related to zoom levels, but to how the viewbox (see http://www.w3.org/TR/SVG/coords.html#ViewBoxAttribute) is created.
An SVG file with: <svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="800" width="600" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
turns into: <svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
Regards. -- Nicolas