Metadata-Version: 2.1
Name: resize_and_crop
Version: 0.1.0
Summary: Resize and crop an image to fit the specified size.
Home-page: https://github.com/alexseitsinger/resize_and_crop
Author: Alex Seitsinger
Author-email: alexseitsinger@gmail.com
License: BSD 2-Clause License
Description: # Resize and Crop
        
        ## Description
        
        Resize and crop an image to fit the specified size.
        
        ## Installation
        
        ```python
        pip install resize-and-crop
        ```
        
        or
        
        ```python
        pipenv install resize-and-crop
        ```
        
        ## Methods
        
        1. resize_and_crop(path, size, crop_origin) - Resize the image located at path, into the size specified, cropping the image starting at the crop_origin.
        
        ## Usage
        
        ```python
        from resize_and_crop import resize_and_crop
        
        image = resize_and_crop("/path/to/image", (200,200), "middle")
        ```
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: BSD License
Description-Content-Type: text/markdown
