4 releases

0.3.1 Feb 8, 2024
0.2.2 May 2, 2022
0.2.1 Apr 30, 2022
0.2.0 Apr 24, 2022

#82 in Images

Download history 468/week @ 2023-12-23 587/week @ 2023-12-30 597/week @ 2024-01-06 677/week @ 2024-01-13 940/week @ 2024-01-20 869/week @ 2024-01-27 961/week @ 2024-02-03 1078/week @ 2024-02-10 1071/week @ 2024-02-17 1205/week @ 2024-02-24 1689/week @ 2024-03-02 1586/week @ 2024-03-09 2081/week @ 2024-03-16 2082/week @ 2024-03-23 1151/week @ 2024-03-30 926/week @ 2024-04-06

6,614 downloads per month

MIT license

42KB
912 lines

imsz

Test Status License ReferenceC API

Get width and height from an image file reading as few bytes as possible.

This is a fork of scardine/imsz that adds support for more file formats, but also breaks API compatibility in order to be more idiomatic Rust. It also provides a C library wrapper. For more information on how this started see the mentioned link.

The library itself has zero dependencies, but the example binary uses clap.

Usage

There is a simple example binary:

$ cargo run -q --example imsz testdata/image.gif
testdata/image.gif: GIF, 32 x 16

$ cargo run -q --example imsz -- --help
imsz 0.3.0
Paulo Scardine <paulo@scardine.com.br>, Mathias Panzenböck <grosser.meister.morti@gmx.net>

USAGE:
    imsz [FILES]...

ARGS:
    <FILES>...    

OPTIONS:
    -h, --help       Print help information
    -V, --version    Print version information

The relevant parts:

use imsz::imsz;

let info = imsz(filename)?;
println!("{}: {}, {} x {}", filename, info.format, info.width, info.height);
// testdata/image.gif: GIF, 32 x 16

// or for already opened files:
let info = imsz(File::open(filename)?);

// or for in memory buffers:
let info = imsz(b"\x89PNG\r\n\x1a\n...");

// or for *anything* implementing Read and Seek:
use imsz::imsz_from_reader;

let mut file = BufReader::new(File::open(filename)?);
let info = imsz_from_reader(&mut file)?;

Supported File Formats

  • AVIF
  • BMP
  • DDS
  • DIB
  • GIF
  • HEIC/HEIF
  • ICO
  • JPEG
  • JPEG 2000
  • PCX
  • PNG
  • PSD
  • OpenEXR
  • QOI
  • TGA
  • TIFF
  • VTF
  • WEBP
  • XCF

No guarantees of correct or complete implementation are made.

No runtime deps