Skip to content

Dragonglass101/TIFF_to_GIF

Repository files navigation

TIFF-Uncompressed-GIF_converter

C project to convert images in TIFF format to Uncompressed GIF format.

PROJECT DESCRIPTION

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.

FILES

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

Build the executable by doing:(assumes GNU make and gcc)

  1. 'make clean'
  2. 'make my_project'
  3. './my_project source_image_name destination_image_name' (this will create the destination image)
  4. Open source image destination image files using any display tool.

About

Converts image format from TIFF to GIF file format

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors