https://github.com/plzombie/fastimage.c
Finds the size and the type of the image by fetching as little as needed бла бла бла
https://github.com/plzombie/fastimage.c
fastimage
Last synced: 4 months ago
JSON representation
Finds the size and the type of the image by fetching as little as needed бла бла бла
- Host: GitHub
- URL: https://github.com/plzombie/fastimage.c
- Owner: plzombie
- License: bsd-2-clause
- Created: 2022-11-08T22:38:49.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-25T00:01:23.000Z (over 1 year ago)
- Last Synced: 2025-01-25T01:17:34.497Z (over 1 year ago)
- Topics: fastimage
- Language: C
- Homepage:
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fastimage.c
Library to detect image size and type
## Supported formats
* bmp - full
* tga - full
* pcx - full
* png - full
* gif - full
* webp - detect and depth
* heic - detect and size only
* jpg - full
* avif - full
* qoi/qoy - full
* ani - detect only
* ico - full
## Supported data streams
* file - via filename or file handle
* http - via http(s) link (WinHTTP or libcurl)
### libcurl
To use libcurl define FASTIMAGE_USE_LIBCURL. For now the whole file is always downloaded.