Metadata-Version: 1.1
Name: PyResizeImage
Version: 0.9.5
Summary: Resize images, and pad them to give an exact size image
Home-page: https://launchpad.net/pyresizeimage
Author: Alkatron
Author-email: alkatron@gmail.com
License: GPLv3
Description: 
        
        
        
        
        
        PyResizeImage  Copyright (C) 2013  Alkatron
        This program comes with ABSOLUTELY NO WARRANTY;
        This is free software, and you are welcome to redistribute it
        under certain conditions; use -w options for details.
        ---------------------------------------------------------------------------
        Resize images, and pad them to give an exact size image.
        If not specified it creates a new folder named resized.<width>.<height> and copies
        resized images into it with the same name.
        - Images with a different aspect-ratio are padded with alpha channel(transparent).
        - Images resized are in PNG format (to mantain transparent channel).
        
        Module usage: 
        
                from pyrszimg.core import resize_img, resize_dir, VVERSION
                
                ResizedImage = resize_img(sourcefile, size)
                or
                dictResults=resize_dir(sourcedir,  size [,destdir ,formats])
                
                with dictResults={'total':<ImageFiles found (integer)>
                                  'skipped':<ImageFiles skipped (integer)> 
                                  'path_to':<destdir (string))>}
                               
        ---------------------------------------------------------------------------
        Console usage: pyresizeimage [options]
        
        Options:
        
        -i, --input     :Folder containing images to resize
        
        -s, --size      :Size of the producted images width/height
        
        -o, --output    :(optional)Folder containing resized images default is 
                         <InputFolder>/resized.<width>.<height>
        
        -f, --formats   :(optional)Image format to evaluate default is png/gif/jpg/jpeg
        
        -w              :Show licence
        
        Example:pyresizeimage -i ~/images -s 640/480
                pyresizeimage -i ~/images -s 640/480 -o ~/images/newpic -f gif/jpg
        
        
        Install
        -------
        sudo pip install PIL
        sudo pip install pyresizeimage
        
Keywords: graphic,image,png,jpg,aspect ratio
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Utilities
