How to create Dotted Art from Lightburn software?

Hello all,

I found a profile on pinterest recently of someone who makes very beautiful art like this using the lightburn software.


Can someone please guide me how to make this using the lightburn? i know the software is built for lazer printing. but i have a video of the artist he always uses this software for the artwork.
Video ( https://dzen.ru/video/watch/66d4c9377fa01b04363877db )

I have learned how to navigate lightburn i just need to know how i can create these circle dots as him. i have tried using Dither,Jarvis all the presets but i cannot get circle dots.

Can somebody please help me? i have a very innovative idea to use this art in. And the artist from pinterest however is not responding to me

From what little the video shows, I think the dot / circle creation happens in an external program. The output of that program, probably an SVG image, is then imported into LightBurn to control the laser.

The size of each dot / circle and their spacing depends on the grayscale value of the original image, which is not something LightBurn seems capable of doing.

I’d like to be proven wrong: it’s a nice technique!

2 Likes

I agree. The circles indicates it is not something like newsprint either.

That would definitely be an impressive process to bring to our lasers.

1 Like

Maybe you can check out if you can misuse the new function of grbl plotter :slight_smile:

1 Like

Thanks but it looks like this technique can only do the same sized dots unfortunately

Ahh the mystery continues. but yea i also agree with you the way the dots are laid out it doesnt seem like the whole process is being done from lightburn the artist must be using another program alongside it.

But which program? :thinking: :thinking: Hopefully somebody from the forum can figure out this mystery.

It’s the halftone algorithm used by newspapers and offset-printing. I guess you need to prepare the graphics that it only contains a few lines and very few shades, then something like this might work: https://www.youtube.com/watch?v=usDDwwraaRk

Or maybe like this:

I used a test graphic and this website: https://halftone.xoihazard.com/

Just messed around with the display, and found Style=Circle and Outline=Checked produced open circles. Unfortunately, there was nothing that produced Donuts.

Still, it is very interesting and worth investigating.

Pretty sure it’s hand drawn; I’d do it with a graphics tablet (or a regular tablet) and photoshop, setting brush size to be controlled by pen pressure; It doesn’t look like it’s automated, as the dots aren’t equally spaced, nor fit on a regular pattern.

Changed my mind, lol. Looks like feature guided stippling. Gonna do a deep dive on the literature and write some code.

2 Likes

Donuts? I don’t see them in the initial image. Or I don’t understand what this means.
But still, the algorithm does not produce the same result as the dots are in a grid, not distributed as in the templates.

1 Like

Darn geriatric eyes! I don’t see donuts either now.

Googled “hirovasutra” and found more examples. Maybe an Adobe, Corel, or GIMP plug-in? Maybe with a light pen on a light sensitive tablet? One thing appears for sure to me, his work is all digital and not paint on a canvas.

i think they meant donuts as in the dots seen in the video https://dzen.ru/video/watch/66d4c9377fa01b04363877db,

But this is homer vector looks pretty good, can this be done in lightburn? or i need to download irfanview?

His pinterest page has tons and tons of vectors like this, so i dont think it takes him more than 10-20 mins to make a design. After input from this thread i think we are certain there 2 steps involved in his work.

  1. An external software (probably photoshop) is used to fine tune the image according to the grayscale needed.
  2. Final Image is then rendered by Lightburn.

i also noticed he saves all the images in .svg file, is it possible to save svg from lightburn?

Yes, you can, but why unless you are sharing files with someone that does not have Lightburn?

Cracked it.

2 Likes

Awesome!!! Going to share the details?

I wrote an implementation of Weighted Voronoi Stippling. When cleaning up and documenting my (crappy) code to post, I found several better implementations

pretty slow, but works.

very fast, different algorithm, so looks less “voronoi”-ish

haven’t tried, touchdesigner looks interesting tho; this specific one is a windows only implementation, couldn’t be bothered to reboot!

For the image I posted, I first converted to greyscale, inverted it and cranked the contrast up then filled a white background.This it to take into account the white on black vs black on white.
Ran through 50 iterations, tweaking various parameters like min and max dot size, number of points etc.
finally, invert again( or export directly as svg, as that’s how lightburn would need it anyway)
My implementation takes about 5 minutes per run; the Rougier verion is a couple of minutes, the
LindeBuzoGrayStippling version is a matter of seconds,

3 Likes

Now that is how to research a subject, thanks!