Skip to main content

A simple library that convert any user uploaded images to webP format

Project description

This is a library for Django that provides a custom model field for storing WebP images. The WebPField model field allows you to store WebP images in your Django models and provides convenient methods for converting between WebP and other image formats.

Installation

To install the library, simply add it to your project’s dependencies using pip:

pip install django-webpfield

Usage

To use the WebPField model field, simply import it from the library and add it to your Django model:

from django.db import models
from webpfield.fields import WebPField


class MyModel(models.Model):
    my_image = WebPField(upload_to="images/")

Settings

The default settings are:

WEBP_FIELD_SETTINGS = {
    "saving_kwargs": {
        "quality": 75,
        "lossless": False,
    },
    "delete_original": False,
    "enable_svg": True,
    "image_field_class": {"module": "django.db.models", "class_name": "ImageField"},
}
  • saving_kwargs: are the kwargs passed to pillow when saving the new image

  • enable_svg: if True you can upload and svg and it will remain svg as original, this achieved by updating the formfield kwargs of WebPField to file field instead of image field

  • image_field_class: The default parent class of WebPField is django ImageField, but you can override it with yours

Contributing

Contributions to the library are welcome! If you find a bug, have a feature request, or would like to contribute code, please open an issue or pull request on the GitHub repo.

License

This library is licensed under the MIT license. See the LICENSE file for more information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_webpfield-0.1.0.tar.gz (117.0 kB view hashes)

Uploaded Source

Built Distribution

django_webpfield-0.1.0-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page