aboutsummaryrefslogtreecommitdiff
path: root/pnm/read.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-08-07 23:42:19 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-08-07 23:43:24 +0900
commitf771fb288ff62d761fcf43e0815a9b2a482db7b4 (patch)
tree009f9289fbb6c0e937993fd00e9bcdf798d50364 /pnm/read.scm
parent440d81869346951bbd7060043faeb5593ac5865d (diff)
Rename procedures from image-pixel-read/write! to image-pixel-ref/set!
Diffstat (limited to 'pnm/read.scm')
-rw-r--r--pnm/read.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/pnm/read.scm b/pnm/read.scm
index d13557e..42ded91 100644
--- a/pnm/read.scm
+++ b/pnm/read.scm
@@ -71,7 +71,7 @@
(pbm-image (make-pbm-image width height)))
(read-text-raster width height #f in
(lambda (x y v)
- (image-pixel-write! pbm-image x y (= v 1)))
+ (image-pixel-set! pbm-image x y (= v 1)))
unexpected-eof-error
unexpected-character-error)
pbm-image))
@@ -87,7 +87,7 @@
(read-bytevector (* 6 width height) in))))
((P3)
(let ((ppm-image (make-ppm-image width height maxval)))
- (read-text-raster width height #t in (image-pixel-writer ppm-image)
+ (read-text-raster width height #t in (image-pixel-setter ppm-image)
unexpected-eof-error
unexpected-character-error)
ppm-image))
@@ -99,7 +99,7 @@
(read-bytevector (* 2 width height) in))))
((P2)
(let ((pgm-image (make-pgm-image width height maxval)))
- (read-text-raster width height #f in (image-pixel-writer pgm-image)
+ (read-text-raster width height #f in (image-pixel-setter pgm-image)
unexpected-eof-error
unexpected-character-error)
pgm-image))))))))))