Registry / web-framework / image
library1.5.33pypypi✓ verified 79d ago

A Django application that provides cropping, resizing, thumbnailing, overlays and masking for images and videos with the ability to set the center of attention. Current version 1.5.33, released on PyPI with no specified release cadence. Frequently updated but with infrequent major releases.

pip install image
INSTALL
IMPORT
SIG · IMAGE
I
image
web-frameworkpythonv1.5.33
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default_app_config
from image import default_app_config
from image import Image
VERSION
from image import VERSION
from image import Image

Basic usage: Create an Image instance, set its source, save, and retrieve its URL.

from image import Image from django.conf import settings settings.configure(INSTALLED_APPS=['image', 'django.contrib.contenttypes', 'django.contrib.auth']) img = Image(name='example.jpg') img.source = 'https://example.com/photo.jpg' img.save() print(img.url)
Debug
Known issues
gotchaThe 'image' package conflicts with the built-in Python 'imghdr' or 'Pillow' when using 'import Image'. Always use 'from image import Image'.
fix
Use explicit import: from image import Image.
affects: all
deprecatedThe 'center_of_attention' feature may rely on deprecated JavaScript libraries (like jQuery) in older versions. Check version compatibility.
fix
Upgrade to latest version (>=1.5.0) for updated frontend dependencies.
affects: <1.5.0
Upgrade
Version history
1.5.33latest on PyPI · released Oct 27, 2020
Audit
Dependencies
DjangorequiredRequired for the Django application integration
PillowrequiredUsed for image processing
Agent activity
33 hits · last 30 days
node
30
OpenAI (training)
1
Resources
image — pip install image · libregistry