Image Resizer in C - Samuel Ray-Alverson Image Resizer in C - Samuel Ray-Alverson

Image Resizer in C

A program in C that resizes greyscale images.

    • C, Notepad++, VS Code
    • June 17, 2021

Problem

Write a program in C that resizes images.

  1. Must be able to run against any PGM image.
  2. Must be able to scale by percentage.
  3. Must be able to maintain aspect ratio given a new width or height.
  4. 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.