jpeg_extractor 0.1.3

Extract jpeg images from any binary via command line
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 8.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.09 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • myisaak/jpeg_extractor
    2 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • MyIsaak

Crates.io Rust

jpeg_extractor

Extract JPEGs out of binary files from the command-line

Install

cargo install jpeg_extractor

Usage

To use the tool, run the following command:

Usage: jpeg_extractor <binary_file_containing_jpegs> [--verbose]

Options

  • <binary_file_containing_jpegs>: Specify the binary file from which you want to extract JPEG images.
  • --verbose (optional): Use this flag to enable verbose output.

How it works?

jpeg_extractor identifies JPEG images within binary files by looking for specific start and end signatures that are common to all JPEG types. The start signature is '0xFF, 0xD8, 0xFF, 0xE0', and the end signature is '0xFF, 0xD9'.

Limitations

Currently jpeg_extractor only supports JPEGs with EXIF data.

Contributing

If you would like to contribute to the development of jpeg_extractor, please check out CONTRIBUTING.md