Metadata-Version: 1.1
Name: collective.autoscaling
Version: 1.1
Summary: Automatic scaling of (too large) images in Plone sites
Home-page: https://pypi.python.org/pypi/collective.autoscaling
Author: Laurent Lasudry
Author-email: laurent.lasudry@affinitic.be
License: GPL version 2
Description: ======================
        collective.autoscaling
        ======================
        
        .. image:: https://travis-ci.org/collective/collective.autoscaling.svg?branch=master
            :target: https://travis-ci.org/collective/collective.autoscaling
        
        
        This package allows automatic scaling of too large images in Plone sites.
        Images can be either Image content type or any Image field on content types.
        
        This is totally transparent to the user (except if you choose to show message).
        
        There is also a view (``@@resize-images``) that you can call to scale existing images (under the context of your choice), for example :
        
         - http://localhost:8080/plone/@@resize-images
         - http://localhost:8080/plone/folder/subfolder/@@resize-images
        
        
        Settings
        --------
        
        - Enable automatic scaling (yes / no)
        - Maximum height at which images will be automatically resized (in pixels)
        - Maximum width at which images will be automatically resized (in pixels)
        - Show information message to user when images have been resized (yes / no)
        
        
        Use case
        --------
        
        1. You configure collective.autoscaling to have images with maximum size of height 800px / width 1200px.
        2. You upload a big image : height 2000px / width 4000px.
        3. It will be resized to height 600px / width 1200px (aspect ratio is of course preserved).
        
        
        Limitations
        -----------
        
        This add-on works only with Dexterity content types.
        
        It has been developed on Plone 4.3.7, but should work with Plone 5, too.
        
        
        Translations
        ------------
        
        This product has been translated into
        
        - English
        - French
        - Norwegian
        
        
        Installation
        ------------
        
        Install collective.autoscaling by adding it to your buildout::
        
            [buildout]
        
            ...
        
            eggs =
                collective.autoscaling
        
        
        and then running ``bin/buildout``
        
        
        Contribute
        ----------
        
        - Issue Tracker: https://github.com/collective/collective.autoscaling/issues
        - Source Code: https://github.com/collective/collective.autoscaling
        
        
        License
        -------
        
        The project is licensed under the GPLv2.
        
        Contributors
        ============
        
        - Laurent Lasudry, Original Author [Affinitic]
        - Espen Moe-Nilssen
        
        Changelog
        =========
        
        
        1.1 (2016-04-13)
        ----------------
        
        - Remove dependency on plone.app.imagecropping (#1)
          [laulaz]
        
        - Translations cleanup
          [laulaz]
        
        
        1.0 (2016-04-11)
        ----------------
        
        - Initial release.
          [laulaz]
        
        
Keywords: Python Plone
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.3
Classifier: Framework :: Plone :: 5.0
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
