django-versatileimagefield icon indicating copy to clipboard operation
django-versatileimagefield copied to clipboard

A drop-in replacement for django's ImageField that provides a flexible, intuitive and easily-extensible interface for quickly creating new images from the one assigned to the field.

Results 60 django-versatileimagefield issues
Sort by recently updated
recently updated
newest added

Are there plans to make this compatible with Django 4?

Hi, is there a possibility to make a circle version of a image, it will be really usefull when u work with agm-map directive on angular and u dont have...

**Warning problem solving** python3.9/site-packages/django/apps/registry.py:91: RemovedInDjango41Warning: 'versatileimagefield' defines default_app_config = 'versatileimagefield.apps.VersatileImageFieldConfig'. Django now detects this configuration automatically. You can remove default_app_config.

When the warming of sized images triggered this error occurred: `AttributeError: module 'magic' has no attribute 'from_buffer'` https://github.com/respondcreate/django-versatileimagefield/blob/318e033b4d7fb800598f2f2de2893077065dfba7/versatileimagefield/utils.py#L152 Error logs ``` VersatileImageField warming up for sized images Thumbnail generation failed...

Hi all, this is a question, not an issue. Is it possible to use this app with static files? Something like generating thumbnail from a file path. Thank you

Image are initially created with proper rendition key set. ``` warmer = VersatileImageFieldWarmer( instance_or_queryset=queryset, rendition_key_set=[('large_horiz', 'crop__1200x600')], image_attr=field, verbose=True, ) warmer.warm() ``` Then, when rendition set sized images are deleted from...

When trying to delete all created images with the use of `delete_all_created_images` method I get the `AssertionError`. I find out that the sized images are created with extension `jpg` when...