nathan-the-coder / png

A simple libpng project written in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image Generator in C

Requirements

Windows

  1. libpng
  2. gcc or mingw-w64

Linux

Arch Linux

sudo pacman -S libpng gcc feh

Debian Linux

sudo apt-get install libpng-dev gcc feh

Customizing

# You can change the image width and height using:
# ./bin/{Debug,Release}/make_png [width] [height]

# Ex: this will generate image with the width of '100' and height of '100'
./bin/Release/make_png 100 100

Example

  1. This is the image created using libpng in C:

example.png

About

A simple libpng project written in C

License:MIT License


Languages

Language:C 95.6%Language:Makefile 4.4%