From 9d052c650ba59ddc8132bce881bd487df31c5348 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sat, 10 Aug 2024 23:08:10 +0900 Subject: Add `image-format` prefix to library name --- image-format/pnm.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 image-format/pnm.scm (limited to 'image-format/pnm.scm') diff --git a/image-format/pnm.scm b/image-format/pnm.scm new file mode 100644 index 0000000..f4f93da --- /dev/null +++ b/image-format/pnm.scm @@ -0,0 +1,39 @@ +;;; R7RS-PNM --- Library for reading and writing PNM (Portable Any Map) files for R7RS +;;; Copyright © 2024 Masaya Tojo +;;; +;;; This file is part of R7RS-PNM. +;;; +;;; R7RS-PNM is free software: you can redistribute it and/or modify it +;;; under the terms of the GNU Lesser General Public License as published +;;; by the Free Software Foundation, either version 3 of the License, or +;;; (at your option) any later version. +;;; +;;; R7RS-PNM is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU Lesser General Public License for more details. +;;; +;;; You should have received a copy of the GNU Lesser General Public License +;;; along with R7RS-PNM. If not, see . + +(define-library (image-format pnm) + (export make-pbm-image + make-ppm-image + make-pgm-image + pnm-image? + pnm-image-type + pnm-image-width + pnm-image-height + pnm-image-maxval + pnm-image-ref + pnm-image-set! + pnm-image-read + pnm-parse-error? + pnm-image-write) + (import (scheme base) + (image-format pnm image) + (image-format pnm pbm) + (image-format pnm pgm) + (image-format pnm ppm) + (image-format pnm read) + (image-format pnm write))) -- cgit v1.2.3