up vote 1 down vote favorite
share [g+] share [fb]

Is there any way to slice an SVG . I mean any already available lib . I need to implement this slicing component in Java.

I mean , I have single SVG file and based rulers/scales i choose graphically , I want to slice the single SVG into different SVG files.

Hope I am clear

link|improve this question

80% accept rate
Define "slicing" do you want to produce graphically separate parts or store logically separate files? Or ...? – Joachim Sauer Jul 8 '09 at 14:10
feedback

3 Answers

Yes, although, you'd think this was classified information - or just simply impossible - based on how hard it is to find this basic fact....

Apparently, all you need to do is reference the viewBox from a URI "fragment".. I have confirmed, it does indeed work. Take the following example... The lesson of the story, in case you miss it, is... image.svg#svgView(viewBox(100,100,100,100))

image.svg is defined as <svg .... viewBox="0,0,400,400" width="400" height="400">

http://example.com/image.svg

svg linked with no viewBox attribute

http://example.com/image.svg#svgView(viewBox(100,100,100,100))

enter image description here

link|improve this answer
feedback

If you're working with SVG in Java, the Batik SVG Toolkit will provide a lot of functionality (I confess I don't know what you mean by slicing, however)

link|improve this answer
I have tried Batik , but it does support SVG slicing operation. – Jijoy Jul 11 '09 at 7:31
feedback

All you have to do is edit the <svg> tag. Edit width and height, set the viewBox attribute on the main svg element to the rectangle you want, render, repeat.

Each svg will contain all the data from the original but will only display the part of the drawing inside the viewBox. See http://dingoskidneys.com/~dholth/svg/

viewbox = "x y width height"
link|improve this answer
I need to , slice a bigger SVG and turn them to mulitple SVGS. eg : I have a big picture , and i divde the whole rectangle into 9 rectangles based on my selection and the output should be these new 9 SVG files , made of content inside these rectangles. I hope I am clear ? – Jijoy Aug 12 '09 at 7:19
1  
It makes sense. As long as you don't mind that the slices are the same size on disk, viewBox is all you need. – joeforker Aug 12 '09 at 14:15
it's not a slice if you have to eat the whole pizza 8 times. – alex gray Jul 11 '11 at 2:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.