Skip to main content

A library to generate BlurHash and PNG data URLs for AVIF images

Project description

BlurHash-AVIF

A Python library extending the Python BlurHash implementation to generate BlurHash strings and PNG data URLs for AVIF images.

Disclaimer: This is an unofficial extension and has no affiliation with the original BlurHash developers. All credit for the BlurHash concept and implementation goes to its creators.

Table of Contents

  1. Installation
  2. Features
  3. Requirements
  4. Usage
  5. Troubleshooting
  6. Contributing
  7. Attribution
  8. License

Installation

Install the library using pip:

pip install blurhash-avif

Features

  • Generate BlurHash strings from AVIF images
  • Create base64-encoded PNG data URLs from AVIF images
  • Maintain image aspect ratio during processing
  • Support RGB mode images
  • Optimize image loading for improved website performance

Requirements

  • Python 3.x
  • Pillow (PIL) library with AVIF support
  • NumPy library
  • base64 library
  • blurhash library

Usage

The library provides six main functions:

  1. generate_blurhash_from_avif: Create a BlurHash string from an AVIF image.
  2. generate_png_data_url_from_avif: Generate a base64-encoded PNG data URL from an AVIF image.
  3. generate_blurhash_and_data_url_from_avif: Produce both a BlurHash string and a PNG data URL.
  4. batch_generate_blurhash_from_avif: Generates BlurHash strings for all AVIF images in a given directory.
  5. batch_generate_png_data_url_from_avif: Generates base64-encoded PNG data URLs for all AVIF images in a given directory.
  6. batch_generate_blurhash_and_data_url_from_avif: Generates BlurHash strings and base64-encoded PNG data URLs for all AVIF images in a given directory.

Example Usage

from blurhash_avif import (
    generate_blurhash_from_avif,
    generate_png_data_url_from_avif,
    generate_blurhash_and_data_url_from_avif,
    batch_generate_blurhash_from_avif,
    batch_generate_png_data_url_from_avif,
    batch_generate_blurhash_and_data_url_from_avif,
)

# Path to your AVIF file
avif_path = "path/to/your/image.avif"

# Generate BlurHash string
blurhash = generate_blurhash_from_avif(avif_path)
if blurhash:
    print(f"BlurHash: {blurhash}")
else:
    print("Failed to generate BlurHash")

# Generate PNG data URL
data_url = generate_png_data_url_from_avif(avif_path)
if data_url:
    print(f"PNG Data URL: {data_url[:50]}...") # Print first 50 characters
else:
    print("Failed to generate PNG Data URL")

# Generate both BlurHash and PNG data URL
blurhash, data_url = generate_blurhash_and_data_url_from_avif(avif_path)
if blurhash and data_url:
    print(f"BlurHash: {blurhash}")
    print(f"PNG Data URL: {data_url[:50]}...") # Print first 50 characters
else:
    print("Failed to generate BlurHash and PNG Data URL")

# Batch generate BlurHash strings
directory = "path/to/your/images"
blurhash_dict = batch_generate_blurhash_from_avif(directory)
print(blurhash_dict)

# Batch generate PNG data URLs
data_url_dict = batch_generate_png_data_url_from_avif(directory)
print(data_url_dict)

# Batch generate BlurHash strings and PNG data URLs
blurhash_dict, data_url_dict = batch_generate_blurhash_and_data_url_from_avif(directory)
print(blurhash_dict)
print(data_url_dict)

Troubleshooting

If you encounter issues with Pillow's AVIF support, try:

pip uninstall pillow
pip install "pillow[avif]"

you man need to install the aviflib library.

To install the required aviflib library, follow these steps:

On macOS (using Homebrew):

brew install libavif

On Ubuntu/Debian:

sudo apt-get install libavif-dev

On windows

pip install aom

or

On windows (vcpkg)

vcpkg install libavif

Contributing

We welcome contributions! To contribute:

  1. Fork the repository
  2. Create your feature branch
  3. Commit your changes
  4. Push to the branch
  5. Open a pull request

Attribution

This package extends the Python BlurHash library. BlurHash was originally created by Dag Ågren for Wolt. The BlurHash algorithm and official implementations are available at the BlurHash GitHub repository.

License

This project is licensed under the Apache License, Version 2.0 with important additional terms, including specific commercial use conditions. Users are strongly advised to read the full LICENSE file carefully before using, modifying, or distributing this work. The additional terms contain crucial information about liability, data collection, indemnification, and commercial usage requirements that may significantly affect your rights and obligations.


Keywords: BlurHash, AVIF, image processing, Python, base64, PNG, data URL, image optimization, web performance, placeholder images

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

blurhash_avif-0.6.2.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

blurhash_avif-0.6.2-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file blurhash_avif-0.6.2.tar.gz.

File metadata

  • Download URL: blurhash_avif-0.6.2.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for blurhash_avif-0.6.2.tar.gz
Algorithm Hash digest
SHA256 c3f96da1e18ce353b438c7c2293689aa5e6f3e4ac1e5c3e8632224fc1051ab84
MD5 06b9c5df7dc06282866d32e1dd84f3d3
BLAKE2b-256 70fae14c01403239b4d8a2fb89e7334dc0fdb08d3cae49d205a370572bdf1206

See more details on using hashes here.

File details

Details for the file blurhash_avif-0.6.2-py3-none-any.whl.

File metadata

File hashes

Hashes for blurhash_avif-0.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d03ee0b9796680b75f89634ee4d2dbbfc68cbe7474aa86c5f9c71e117ec5485b
MD5 90a886816071a881172c06f0d1854cc7
BLAKE2b-256 3d6428d7e36e7e09a2135fefe011e22455c72641a6bdf42415c4da904eac6f4a

See more details on using hashes here.

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