1

I have this SVG I'm trying to import to blender, but the thickness of the contour just doesn't show.

Is there a way to import the svg exactly how is shown in the other softwares?

This r the prints of my problem.

How the SVG should look like

How it looks when imported to Blender

How it looks when I render

user90214
  • 13
  • 3
  • The first img is how the SVG should look like, the second is after importing to blender and the third is after I render it – user90214 Mar 13 '20 at 13:57
  • https://blender.stackexchange.com/questions/72423/how-to-import-svg-file-with-same-thickness/72430#72430 – Duarte Farrajota Ramos Mar 13 '20 at 15:17
  • 1
    The line "thickness" is called the "stroke", that stroke is just an appearance applied to the vector line by the software (Inkscape or Illustrator). When you import an SVG into a 3d app, it only reads the base vector lines and doesn't translate that stroke width appearance to a 3d object. To get those lines, you need to edit the SVG in your vector program and outline the stroke before exporting. – scottywood Mar 13 '20 at 15:45
  • Here's a article on how to outline a stroke in Illustrator: https://design.tutsplus.com/tutorials/how-to-use-outline-stroke-in-adobe-illustrator--cms-34160 – scottywood Mar 13 '20 at 15:45
  • .. or you could stroke the lines in Freestyle .. – Robin Betts Mar 13 '20 at 16:13

2 Answers2

1

I'm using Blender 2.79.

Give the svg path a volume with the Solidify modifier.

Set the Offset to 0 and Use the Clamp value to thick or thin the stroke.

enter image description here

LeoNas
  • 1,643
  • 8
  • 10
1

Download, install and launch Inkscape (an open source vector graphics editor), open your SVG, select all objects of the SVG file, ungroup a few times, go to Path > Stroke to Path , save the new SVG.

Import into Blender and you should see some more borders / lines.

enter image description here

Duarte Farrajota Ramos
  • 59,425
  • 39
  • 130
  • 187
Sanbaldo
  • 3,189
  • 1
  • 9
  • 26