C project to convert images in TIFF format to Uncompressed GIF format.
This archive contains a tool written in C programming language to convert an image from one format to another.
Source format: TIFF.(coloured)
Destination format: uncompressed GIF.
The tool:
reads the image data from the source image. populates suitable data structures with image data. converts data such that it is suitable to fill destination format data structures. uses data in destination data structure format and creates a destination image file.
declarations.h -> contains function declarations and structures of both tiff and gif programs. tiff_img_reader.c -> program to read image data and properties from the source image. gif_img_writer.c -> program to write GIF image file using RGB data collected from TIFF image. main.c -> contains main() function which calls all required functions, reads and writes data. makefile -> makefile for this project (assumes gcc and GNU make). README.txt -> this file.
Build the executable by doing:(assumes GNU make and gcc)
- 'make clean'
- 'make my_project'
- './my_project source_image_name destination_image_name' (this will create the destination image)
- Open source image destination image files using any display tool.