Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 566 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 566 Bytes

JPEG to PPM Decoder in C

Folder Structure:

  • src: Contains the .c files
  • include: Contains the .h header files
  • obj: Contains the .o object files
  • bin: Contains the executable jpeg2ppm
  • images: Contains test images in .jpeg and .jpg formats

Instructions to Run the Decoder:

  1. Compile the decoder using:
    make
  2. Run the executable jpeg2ppm with the following command:
    ./jpeg2ppm <image_name>.jpeg
    Replace <image_name>.jpeg with the name of the JPEG image you want to decode.