aboutsummaryrefslogtreecommitdiff
path: root/pnm.scm
blob: f339ac3a47c35a3ab7c0b6ed44bad48794f71bc7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(define-library (pnm)
  (export make-ppm-image
          make-pgm-image
          image?
          image-type
          image-width
          image-height
          image-maxval
          image-ref
          image-set!
          image-read
          image-write)
  (import (scheme base)
          (pnm image)
          (pnm pgm)
          (pnm ppm)
          (pnm read)
          (pnm write)))