Project

picpacput

0.0
No commit activity in last 3 years
No release in over 3 years
PicPacPut - Bulk shrink images and pack them.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 2.13.0
 Project Readme
The purpose of PicPacPut is to shrink images in bulk and then hand them
off to something else; as in a service or into a compressed file.

Example usage:

    require 'picpacput'
    p = PicPacPut.new
    p.pic
    p.pac

By the current defaults this will shrink all images to 5% and
place the images in the subfolder called resized.  Then all images
get compressed into the default resized/output.zip .  Coming soon
'put' to send the zip file where you want.

Look at the source to see the options you can define.  You have many options.
You can call the options when you first initialize the object.
PicPacPut.new( { :folder=>'./', :scale_by=>0.15, :zipFile=>'output.zip', :recursive=>false } )