Metadata-Version: 1.1
Name: image_slicer
Version: 0.0.1
Summary: Cut images into tiles and reassemble them..
Home-page: http://python-image-slicer.net
Author: Sam Dobson
Author-email: sjd333@gmail.com
License: Copyright (c) 2013 Sam Dobson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


Description: .. image:: https://badge.fury.io/py/image_slicer.png
            :target: http://badge.fury.io/py/image_slicer
        
        .. image:: https://secure.travis-ci.org/samdobson/image_slicer.png
            :target: http://travis-ci.org/samdobson/image_slicer
        
        .. image:: https://coveralls.io/repos/samdobson/image_slicer/badge.png?branch=master
            :target: https://coveralls.io/r/samdobson/image_slicer?branch=master
        
        Image Slicer
        ============
        
        What does it do?
        ----------------
        
        Splits an image into >n equally-sized tiles. Also capable of joining the pieces back together.
        
        Whether you are planning a collaborative art project, creating a jigsaw puzzle, or simply get a kick out of dividing images into perfectly equal squares, this module is for you!
        
        Installation
        ------------
        
        .. code-block:: console
        
        	$ pip install image_slicer
        
        **Compatible with:**
        
        * Python >=2.7
        * Python >=3.2
        
        Usage
        -----
        
        Slice an image with Python:
        
        .. code-block:: python
        
        	>>> import image_slicer
        	>>> file = 'fish.jpg'
        	>>> num_tiles = 36
        	>>> tiles = image_slicer.split_image(file, num_tiles)
        	>>> image_slicer.save_tiles(tiles)
        
        ... or from the command line:
        
        .. code-block:: console
        
        	$ slice-image fish.jpg 36
        
        `Further examples`_ can be found in the documentation_.
        
        About
        -----
        
        This module was developed for collabart_, a web application to help you launch a collaborative art project.
        
        .. _Further examples: https://docs.readthedocs.org/examples
        .. _documentation: https://docs.readthedocs.org
        .. _collabart: http://www.collabart.com
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
