A simple module to make easier crop images in Django admin.
Project description
django-simplecrop
================
A simple module to crop images in an easy way in Django Administration.
Installation
-----------------------------------
Install ``django-simplecrop`` (or download from [PyPI](http://pypi.python.org/pypi/django-simplecrop/ "Download from PyPI")):
pip install django-simplecrop
Add ``simplecrop`` to ``INSTALLED_APPS`` in ``settings.py``:
INSTALLED_APPS = (
...
'simplecrop',
...
)
Include ``simpleCropAutodiscover()`` after ``admin.autodiscover()``:
...
from simplecrop.utils import simpleCropAutodiscover
admin.autodiscover()
simpleCropAutodiscover()
Include ``simplecrop.urls`` in ``urls.py``:
urlpatterns = patterns('',
...
url(r'^simplecrop/', include('simplecrop.urls')),
)
Usage
------------------
Include the ``__crops__`` parameter in your model and specify the field and image sizes:
class MyModel(models.Model):
__crops__ = [
["image", ["110x110", "200x150"]]
]
title = models.CharField(u"Title", max_length=128)
text = models.TextField("Text")
image = models.ImageField("Image", upload_to="images")
Testing
-----------------
Step 1 - Add image:
![Step 1](http://feliperego.com/img/step1.png "Step 1")
Step 2 - Crop images:
![Step 2](http://feliperego.com/img/step2.png "Step 2")
Template tag
-----------------
Use the template tag `{% thumbnail %}` in your templates:
How to use:
<img name="myimage" src="{% thumbnail ImageObj '100x100' %}" />
\* *This template tag obtains the thumbnail image created when saving in admin. If it does not exist, a new thumbnail with the specified sizes will be created.*
Authors
-----------------
- [Felipe R. Rêgo](https://github.com/feliperrego "GitHub - Felipe R. Rêgo")
- [Silvio Lucena Junior](https://github.com/silviolucenajunior "GitHub - Silvio Lucena")
================
A simple module to crop images in an easy way in Django Administration.
Installation
-----------------------------------
Install ``django-simplecrop`` (or download from [PyPI](http://pypi.python.org/pypi/django-simplecrop/ "Download from PyPI")):
pip install django-simplecrop
Add ``simplecrop`` to ``INSTALLED_APPS`` in ``settings.py``:
INSTALLED_APPS = (
...
'simplecrop',
...
)
Include ``simpleCropAutodiscover()`` after ``admin.autodiscover()``:
...
from simplecrop.utils import simpleCropAutodiscover
admin.autodiscover()
simpleCropAutodiscover()
Include ``simplecrop.urls`` in ``urls.py``:
urlpatterns = patterns('',
...
url(r'^simplecrop/', include('simplecrop.urls')),
)
Usage
------------------
Include the ``__crops__`` parameter in your model and specify the field and image sizes:
class MyModel(models.Model):
__crops__ = [
["image", ["110x110", "200x150"]]
]
title = models.CharField(u"Title", max_length=128)
text = models.TextField("Text")
image = models.ImageField("Image", upload_to="images")
Testing
-----------------
Step 1 - Add image:
![Step 1](http://feliperego.com/img/step1.png "Step 1")
Step 2 - Crop images:
![Step 2](http://feliperego.com/img/step2.png "Step 2")
Template tag
-----------------
Use the template tag `{% thumbnail %}` in your templates:
How to use:
<img name="myimage" src="{% thumbnail ImageObj '100x100' %}" />
\* *This template tag obtains the thumbnail image created when saving in admin. If it does not exist, a new thumbnail with the specified sizes will be created.*
Authors
-----------------
- [Felipe R. Rêgo](https://github.com/feliperrego "GitHub - Felipe R. Rêgo")
- [Silvio Lucena Junior](https://github.com/silviolucenajunior "GitHub - Silvio Lucena")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-simplecrop-1.0.4.zip
(95.8 kB
view details)
File details
Details for the file django-simplecrop-1.0.4.zip
.
File metadata
- Download URL: django-simplecrop-1.0.4.zip
- Upload date:
- Size: 95.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8c3c6a196eae20716edb94a138f04cd81b6c607d6fd8ce839344ee186e6b558 |
|
MD5 | 534c8e80b476495b7728c865afc88c88 |
|
BLAKE2b-256 | d4f649564786fa6a3c35820207daa5e27fc99bfcd598850215bef41f01262efb |