Skip to content

Releases: VishalRamki/rust-ppmviewer

v1.3

03 Apr 05:22
c5d7592
Compare
Choose a tag to compare

v1.3 => Road To v2.0

  • Added Suport for P1 PPM File Format - which is the Portable BitMap. Also supports the P4 which is the binary version.

v1.2

28 Mar 05:38
f64bf87
Compare
Choose a tag to compare

v1.2 => Road To v2.0

  • Changes the way ASCII values are parsed. Previous it would insert random 0s which would cause images to be misaligned. It now correctly filters out Whitespace
  • Added Support for P2 PPM File Format - Which is the Portable GrayMap. Also supports the P5 format which is the binary version.
  • Fixed issue where byte position weren't being correctly calculated. This resulted in images being misaligned by a pixel.

v1.1

25 Mar 04:09
0f229e4
Compare
Choose a tag to compare

v1.1 => Road to v2.0

  • Ensures Comments are parsed out of the ASCII and Binary versions. i.e they are not processed and stripped before algorithm runs.
  • Adds the option to prevent image from being redrawn, as it eats CPU and GPU cycles unnecessarily.
  • Adds the ability to read P6 PPM File format. That is the Binary version of the P3 format.
  • Fixes Resize issues, ensures that window can now resize dynamically

Pixel Buffer Hotfix

22 Mar 22:05
Compare
Choose a tag to compare

There was an issue where the pixel buffer was generating using 256x256, which meant any image larger than that would get cut off and become misaligned.

This build fixes it.

First Public Release v1.0

22 Mar 02:39
Compare
Choose a tag to compare

This is the first time I am release a binary, so please - have mercy.

Usage:

ppmviewer.exe "filename.ppm"

Supports only .PPM files as of this release.