Metadata-Version: 2.1
Name: smartcrop
Version: 0.2.1
Summary: smartcrop implementation in Python
Home-page: https://github.com/smartcrop/smartcrop.py
Author: Hideo Hattori
Author-email: hhatto.jp@gmail.com
License: MIT
Keywords: image,crop,PIL,Pillow
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Requires-Dist: Pillow (>=4.3.*)

.. image:: https://travis-ci.com/smartcrop/smartcrop.py.svg?branch=master
    :target: https://travis-ci.com/smartcrop/smartcrop.py
smartcrop.py
============
smartcrop implementation in Python

smartcrop finds good crops for arbitrary images and crop sizes, based on Jonas Wagner's `smartcrop.js`_

.. _`smartcrop.js`: https://github.com/jwagner/smartcrop.js

.. image:: https://i.gyazo.com/c602d20e025e58f5b15180cd9a262814.jpg
    :width: 50%

.. image:: https://i.gyazo.com/5fbc9026202f54b13938de621562ed3d.jpg
    :width: 25%

.. image:: https://i.gyazo.com/88ee22ca9e1dd7e9eba7ea96db084e5e.jpg
    :width: 50%

Requirements
------------
* PIL or Pillow


Installation
------------
.. code-block:: sh

    pip install --upgrade git+https://github.com/hhatto/smartcrop.py.git


Usage
-----
command-line tool

.. code-block:: sh

    smartcrop.py FILE

use module

.. code-block:: python

    import sys
    import json
    from PIL import Image
    import smartcrop

    sc = smartcrop.SmartCrop()
    crop_options = smartcrop.DEFAULTS
    crop_options['width'] = 100
    crop_options['height'] = 100

    img = Image.open(sys.argv[1])
    ret = sc.crop(img, crop_options)
    print(json.dumps(ret, indent=2))


smartcrop.py is slower than `smartcrop.js`_

.. code-block:: sh

    $ identify images/t.jpg
    images/t.jpg JPEG 3200x2403 3200x2403+0+0 8-bit DirectClass 2.066MB 0.000u 0:00.000
    $ time smartcrop --width 300 --height 300 images/t.jpg
    smartcrop --width 300 --height 300 images/t.jpg  0.30s user 0.11s system 100% cpu 0.414 total
    $ time smartcroppy --width 300 --height 300 images/t.jpg
    smartcroppy --width 300 --height 300 images/t.jpg  3.74s user 0.31s system 99% cpu 4.051 total

License
-------
MIT


