
Image Resizer in C
A program in C that resizes greyscale images.
Problem
Write a program in C that resizes images.
- Must be able to run against any PGM image.
- Must be able to scale by percentage.
- Must be able to maintain aspect ratio given a new width or height.
- Must be able to alter the aspect ratio given a new width and height.
Solution
I used weighted averages of the pixel values to determine the new pixel values.
** This project is based on an active assignment within the NCSU Computer Science department. The code is available for review by potential employers, upon request, in a limited capacity.