My talented listmates,
A cartoonist friend wants to convert this drawing - character to 3D print them. I signed up for a free meshy account, uploaded the png, and clicked convert to stl but when I click Download it just displays all sorts of paying options.
Has anyone used meshy and downloaded an .stl?
Have you used luma? Tripo? Kaedim? Other AI or application which converts a png into stl for free?
Thank you.
Charles.
On May 25, 2026, at 11:34, charles meyer <reachm...@gmail.com> wrote:
--
You received this message because you are subscribed to the Google Groups "Sector67 Public" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sector67+u...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/sector67/CAFTwCBa%3D__Enuw9WHzMwgR25ni6UnT9Bw%3DzZ0Z-gRAaARQq6gQ%40mail.gmail.com.
When I used meshy that it defaults to the Version 6 "pay model". If you go back to meshy and use model version 5 ( in the bottom left after uploading the image) it will be free.
Charles C
To view this discussion visit https://groups.google.com/d/msgid/sector67/FC4C0898-2BB7-42A1-8133-325B3A6A110B%40gmail.com.
FWIW, you can use inkscape to convert a png to an svg file and then use openscad to convert the svg into an stl.
The inkscape command is something like this:
$ inkscape --export-type=svg --export-filename=image.svg image.png
The openscad command is somewhat more complicated:
openscad -D "image=\"image.svg\"" -o "image.stl" svgtostl.scad
Here's the svgtostl.scad code:
image="error";
linear_extrude(height = 1) {
import(file = image);
}
I have no idea if this actually works. I know it produces an
stl file but I don't know if you can print it. I was messing
around with it trying to print some maps for a D&D game I was
running. I was hoping to print the maps on a 3D printer so
myself and my blind friends could have a map to go by. It
might be interesting to actually give it a try someday.