Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 384 Bytes

File metadata and controls

23 lines (15 loc) · 384 Bytes

Portable Pixel Map (PPM)

Back{: .button}

Format

  1. Line 1 contains the Magic Number
  2. Line 2 contains width and height separated by a space
  3. Line 3 contains max color value, must be less than 65536 and greater than 0

Example ppm file

P6
2 1
255
255 0 0 255 0 0

Specification