Ruby library to convert images to usable & printable ZPL code
Add the gem to your Gemfile:
gem 'img2zpl'
And then run bundle install
Or install it yourself with:
gem install img2zpl
require 'img2zpl'
img = Img2Zpl::Image.open('foo.jpg')
zpl = img.to_zpl #=> "^GFA, ... ^FS"
The Img2Zpl::Image
class inherits from the MiniMagick::Image
class provied by the minimagick gem. So you have the same control when it comes to modifying the image before converting to ZPL.
Example:
img = Img2Zpl::Image.open('foo.png')
img.flatten
img.trim
img.resize '100x100'
zpl = img.to_zpl
When calling the .to_zpl
method there a number of optional parameters you can pass to further customize the resulting image:
black_threshold
: A value between 0 and 1 that sets the darkness threshold which determines how dark a pixel should be in order to become black in the resulting b/w image. Use larger value for a more saturated image and smaller value for a less saturated one. Default:0.5
invert
: set totrue
to invert which pixels are set to black and which are set to white.compress
: set tofalse
to not perform the ACSII compression in the resulting^GF
string. For larger images the uncompressed string can become very long, so use caution.
Example:
zpl = img.to_zpl black_threshold: 0.65, invert: true
See CONTRIBUTING.md
© 2019, Michael King and Contributors.
MIT License, see LICENSE