Metadata-Version: 2.4
Name: imagesize
Version: 2.0.1
Summary: Get image size from headers (BMP/PNG/JPEG/JPEG2000/GIF/TIFF/SVG/Netpbm/WebP/AVIF/HEIC/HEIF)
Author-email: Yoshiki Shibukawa <yoshiki@shibu.jp>
License-Expression: MIT
Project-URL: Repository, https://github.com/shibukawa/imagesize_py
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE.rst
Dynamic: license-file

imagesize
=============

.. image:: https://github.com/shibukawa/imagesize_py/actions/workflows/ci.yml/badge.svg
    :target: https://github.com/shibukawa/imagesize_py/actions/workflows/ci.yml

.. image:: https://img.shields.io/pypi/v/imagesize.svg
    :target: https://pypi.org/project/imagesize/
    :alt: PyPI version

.. image:: https://img.shields.io/pypi/pyversions/imagesize.svg
    :target: https://pypi.org/project/imagesize/
    :alt: Supported Python versions

.. image:: https://img.shields.io/pypi/l/imagesize.svg
    :target: https://github.com/shibukawa/imagesize_py/blob/main/LICENSE.rst
    :alt: License

This module analyzes JPEG/JPEG 2000/PNG/GIF/TIFF/SVG/Netpbm/WebP/BMP/AVIF/HEIC/HEIF image headers and returns image size, DPI, and related metadata.

.. code:: python

   import imagesize

   width, height = imagesize.get("test.png")
   print(width, height)

   xdpi, ydpi = imagesize.getDPI("test.png")
   print(xdpi, ydpi)

   info = imagesize.get_info("test.png")
   print(info.width, info.height, info.rotation, info.xdpi, info.ydpi, info.colors, info.channels)

This module is a pure Python module. You can use file like object like file or something like ``io.BytesIO``.

Supported Python versions: 3.10-3.15

Installation
----------------

.. code:: bash

   pip install imagesize

For local development setup:

.. code:: bash

   python -m venv .venv
   source .venv/bin/activate
   pip install -e .

Version 2.0 migration notes
-----------------------------

Version 2.0 includes the following updates:

* Added/expanded support for ``BMP``.
* Added support for ``AVIF``.
* Added support for ``HEIC/HEIF``.
* ``imagesize.get_info()`` now returns richer metadata including color depth, channel count, and rotation information.
* Improved EXIF orientation handling so JPEG, TIFF, AVIF, and HEIC/HEIF return sizes that correctly reflect EXIF rotation metadata.
* Added type hints for the public API and related input/output types.

Backward incompatible behavior in 2.0:

* ``imagesize.get()`` now returns ``(-1, -1)`` when parsing fails.
* ``imagesize.getDPI()`` now returns ``(-1, -1)`` when parsing fails.

If your existing code relied on exceptions during parse failures, update it to explicitly check return values.

API
-----

* ``imagesize.get(filepath: FileInput, *, exif_rotation: bool = True) -> tuple[int, int]``

  Returns image size as ``(width, height)``. By default, orientation metadata is applied for rotated JPEG/TIFF/AVIF/HEIF images; pass ``exif_rotation=False`` to get the stored size as-is.
  On parsing errors it returns ``(-1, -1)``.

* ``imagesize.getDPI(filepath: FileInput) -> tuple[int, int]``

  Returns image DPI as ``(xdpi, ydpi)``.
  On parsing errors it returns ``(-1, -1)``.

* ``imagesize.get_info(filepath: FileInput, *, size: bool = True, dpi: bool = True, colors: bool = True, exif_rotation: bool = True, channels: bool = True) -> ImageInfo``

  Returns an ``ImageInfo`` named tuple with ``width``, ``height``, ``rotation``, ``xdpi``, ``ydpi``, ``colors`` and ``channels`` fields. ``rotation`` contains orientation metadata (e.g. EXIF Orientation tag, or ``-1`` when unavailable).

HTTP and HTTPS URLs are accepted as input. The library uses HTTP byte-range
requests automatically so that pixel data does not need to be downloaded. If a
server does not support range requests, it transparently falls back to one full
download for compatibility. The first request is limited to 8 KiB; later random
access expands cached regions in 64 KiB blocks only when more metadata is needed.

Benchmark
------------

Only headers and the metadata needed for the requested result are read. Pixel
payloads are skipped with ``seek()`` locally and HTTP Range requests remotely.
Run the included benchmark with:

.. code:: bash

   python bench.py --number 10000

The report includes elapsed time and the number of bytes read for PNG, JPEG,
TIFF, GIF, JPEG2000, AVIF, and HEIF. It also simulates an 8 MiB remote AVIF and
reports the number of Range requests and transferred bytes.

Development
---------------

Run test with the following command:

.. code:: bash

   python -m unittest

License
-----------

MIT License

* test/images/test.heic: https://nokiatech.github.io/heif/examples.html
* test/images/test.avif: https://libre-software.net/image/avif-test/

Thanks
----------

I referred to the following code:

* http://markasread.net/post/17551554979/get-image-size-info-using-pure-python-code
* https://stackoverflow.com/questions/8032642/how-to-obtain-image-size-using-standard-python-class-without-using-external-lib

I use sample image from here:

* https://www.nightprogrammer.org/development/multipage-tiff-example-download-test-image-file/

Thank you for feedback:

* tk0miya (https://github.com/tk0miya)
* shimizukawa (https://github.com/shimizukawa)
* xantares (https://github.com/xantares)
* Ivan Zakharyaschev (https://github.com/imz)
* Jon Dufresne (https://github.com/jdufresne)
* Geoff Lankow (https://github.com/darktrojan)
* Hugo (https://github.com/hugovk)
* Jack Cherng (https://github.com/jfcherng)
* Tyler A. Young (https://github.com/s3cur3)
* Mark Browning (https://github.com/mabrowning)
* ossdev07 (https://github.com/ossdev07)
* Nicholas-Schaub (https://github.com/Nicholas-Schaub)
* Nuffknacker (https://github.com/Nuffknacker) 
* Hannes Römer (https://github.com/hroemer)
* mikey (https://github.com/ffreemt)
* Marco (https://github.com/marcoffee)
* ExtReMLapin (https://github.com/ExtReMLapin)
* gremur (https://github.com/gremur)
* fuyb1992 (https://github.com/fuyb1992)
* flagman (https://github.com/flagman)
* icemac (https://github.com/icemac)
* ojuuji (https://github.com/ojuuji)
* stephenfin (https://github.com/stephenfin)
* gaoflow (https://github.com/gaoflow)
* jdillard (https://github.com/jdillard)
