Skip to main content

Generates an image (PNG, JPEG, etc.) from a GRBL file (.NC, .GC, ...) in Python using pillow (python3)

Project description

grbl2image

Generates an image (PNG, JPEG, etc.) from a GRBL file (.NC, .GC, ...), in Python using pillow (python3 PIL fork). It is to be used as a reusable standalone component, initially for the parent project GRBL WebStreamer that is a webinterface for laser cutters running on Raspi or similar SBC.

Turns GRBL code into PNG

The target is to generate a simply a top view of a GRBL job for my Laser (see limitations below). As of now only a subset of the GRBL commands are recognized, and more will be added along the way when their need arise. This is not meant to be the complete solution for all GRBL files, but I'll be taking requests on GitHub so don't hesitate.

What it does

  • Generates image from a GRBL file for a Laser job
  • Calculates estimated bounds of the job
  • Supports color blending for "greyscale" jobs
  • Calculates an estimated time of completion of the job

Limitations

This is made to support a laser cutter/engraver, not CNC, and this is out of scope even of the end scope of library. There are already good solutions that handle the 3D component of your CNC. This is just a top view of a GRBL file, so if it works with yours CNC good for you!

Therefore GRBL codes that don't make sense for a laser will be ignored and not implemented, but if you have time fork this project!

Assumptions

I took some assumptions with this code, and the more mature it will get the more flexible it will be. For now, here are a few that are enforced implicitly:

  • You work in Metric system (like you should)
  • Default coords are ABSOLUTE
  • Origin is 0,0
  • Work area is 200mm x 200mm with a resolution of 10px/mm by default (but you can change that - see examples below)

Compatibility / Tested software

So far the tested software and empirically perceived support:

  • LightBurn : Very good (all the jobs I made and tried rendered just fine)

Technical details

Dependencies

  • Pillow the replacement of PIL the image library : python3 -m pip install pillow

Supported GRBL codes

I will add them as I need them, but here are the ones that should work as of now:

  • G0 move
  • G1 burn
  • G90 coords are ABSOLUTE
  • G91 coords are RELATIVE

Sample usage

Generate an image from GRBL file

import grbl2image.grbl2image as G2I
from PIL import Image

#Generate the PIL Image object based on sample code
img, stats = G2I.processFile("sample.gcode/Test gcode 1.nc", color="blue")
print(stats)

#overlay another job in the same image
img, stats = G2I.processFile("sample.gcode/Test gcode 2.nc", targetImage=img, color="red", yoffset=300)
print(stats)

#final flip because the image 0,0 is top left and for us human it's at the bottom left
img = img.transpose(Image.FLIP_TOP_BOTTOM)

#show popup
img.show()

Change the target image size

Default is 200mm x 200mm at 10px/mm resolution, but you can change that according your laser work area. Tip : better have a bigger image and then scaling down than a small image all along.

import grbl2image.grbl2image as G2I
from PIL import Image

#suppose your laser is a 40cm x 30xm for instance you could use these settings **before** calling processFile()
G2I.PIXELS_PER_MM = 5
G2I.AREA_W_MM = 300
G2I.AREA_H_MM = 400

#Generate the PIL Image object based on sample code
img, _ = G2I.processFile("sample.gcode/Test gcode 1.nc", color="blue")

#final flip because the image 0,0 is top left and for us human it's at the bottom left
img = img.transpose(Image.FLIP_TOP_BOTTOM)

#save
img.save("laser_job_001.png")

Customize the rendering

import grbl2image.grbl2image as G2I
from PIL import Image

# don't blend, just laser ON/OFF : makes you see the whole work but make greyscale images a big blotch
G2I.NO_BLENDING = True
# change default background color
G2I.BG_COLOR = "whitesmoke"

#Generate the PIL Image object based on sample code and overwrite the default values
img, _ = G2I.processFile("sample.gcode/Test gcode 1.nc", color="blue", bg_color="yellow", noblending=False)

...

Get stats about the job

import grbl2image.grbl2image as G2I

#Make the image and compute the stats (see details in the object attributes)
img, stats = G2I.processFile("sample.gcode/Test gcode 1.nc")
print(stats)

Prints:

>>>> Job 'Test gcode 1.nc' from [8.0, 4.599] ((80, 1954) px) to [83.12600000000003, 24.899000000000086] ((832, 1751) px). Estimated duration [0h 1m 9s] .

Source code

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grbl2image-1.2.1.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

grbl2image-1.2.1-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file grbl2image-1.2.1.tar.gz.

File metadata

  • Download URL: grbl2image-1.2.1.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for grbl2image-1.2.1.tar.gz
Algorithm Hash digest
SHA256 8f076d928314b8d487548dd02aed36752a44cdab55533d8afe31fa8bc84a04d0
MD5 1f1ca6c8c259089ec478301a2446c89c
BLAKE2b-256 7a12524cbb4017353256823314391a5d143d31f96118adb57efa97dda24f1d41

See more details on using hashes here.

File details

Details for the file grbl2image-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: grbl2image-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for grbl2image-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 754ddbce8811afbfe2d464910b9e7724dde4a04b75712e0b051b8168195bdad5
MD5 c7f89de9b2bec1b4738ed82b89823834
BLAKE2b-256 6ee588cc86f6c0cd8a922c16330e6d83558042030c1fccc9e95ac64333702b03

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page