Mobile app version of vmapp.org
Login or Join
Smith574

: I've programmatically created an SVG. How do I 'crop' it? I used Processing to generate this SVG. As you can see, it's a series of triangles with trapezoids that gradually get smaller. It

@Smith574

Posted in: #Crop #LaserCutting #Svg

I used Processing to generate this SVG.



As you can see, it's a series of triangles with trapezoids that gradually get smaller. It came out great, except I want to 'crop' the image to look like this.



Ultimately I want to laser cut this drawing. A laser cutter needs an SVG in order to work, so I can't rasterize and crop. How can I join the border shapes to form a complete SVG?

Sorry if this isn't clear, I'm new to graphic design.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Smith574

1 Comments

Sorted by latest first Latest Oldest Best

 

@Murray976

Traditionally, "crop" means to block something with something else. So is a bitmap term... pixels or edges or something else cover up something else, hence it's cropped.

The term you want is "trim" or "cut", and the tools you'll need are going to perform a slice like action to your vector (SVG) imagery.


Find a vector editor you like. These are CorelDraw, Illustrator, etc...
Learn how to draw a box and place it over the parts you want to "cut" away.
Check out the boolean tools, they permit you to do "slicing" or "cutting" that removes what you don't want by using the box as a "cutter".


I'm using all the wrong words, so that the process can become clear, each program has its own specific terms for these actions and processes... but the principles are the same: One thing slices and then removes something else based upon the space it's taking up. Hence the programming sounding "boolean" word is often used for this stuff.

Alternative solution:

Use a vector editor to break apart your SVG, and then you can individually select each of the triangles you want to delete, and delete them. But it looks like you'll still need to do some slicing to get the straight edge results at the bottom of your image.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme