1 ;;;; This file is part of LilyPond, the GNU music typesetter.
3 ;;;; Copyright (C) 2005--2010 Jan Nieuwenhuizen <janneke@gnu.org>
5 ;;;; LilyPond is free software: you can redistribute it and/or modify
6 ;;;; it under the terms of the GNU General Public License as published by
7 ;;;; the Free Software Foundation, either version 3 of the License, or
8 ;;;; (at your option) any later version.
10 ;;;; LilyPond is distributed in the hope that it will be useful,
11 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ;;;; GNU General Public License for more details.
15 ;;;; You should have received a copy of the GNU General Public License
16 ;;;; along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
18 (define-module (scm ps-to-png))
30 (define-public _ gettext)
35 (car (string-tokenize (vector-ref (uname) 0) char-set:letter)))))
37 (define (re-sub re sub string)
38 (regexp-substitute/global #f re string 'pre sub 'post))
40 (define (search-executable names)
41 (define (helper path lst)
44 (if (search-path path (car lst)) (car lst)
45 (helper path (cdr lst)))))
47 (let ((path (parse-path (getenv "PATH"))))
51 (search-executable '("gs-nox" "gs-8.15" "gs")))
53 (define (gulp-port port max-length)
54 (let ((str (make-string max-length)))
55 (read-string!/partial str port 0 max-length)
58 (define-public (gulp-file file-name . max-size)
59 (ly:gulp-file file-name (if (pair? max-size) (car max-size))))
61 ;; copy of ly:system. ly:* not available via lilypond-ps2png.scm
62 (define (my-system be-verbose exit-on-error cmd)
66 (format (current-error-port) (_ "Invoking `~a'...") cmd)
67 (newline (current-error-port))))
68 (set! status (system cmd))
69 (if (not (= status 0))
71 (format (current-error-port)
72 (format #f (_ "~a exited with status: ~S") "GS" status))
73 (if exit-on-error (exit 1))))
76 (define (scale-down-image be-verbose factor file)
79 (old (string-append file ".old")))
81 (rename-file file old)
85 "pngtopnm ~a | pnmscale -reduce ~a 2>/dev/null | pnmtopng -compression 9 2>/dev/null > ~a"
91 (define-public (ps-page-count ps-name)
92 (let* ((byte-count 10240)
93 (header (gulp-file ps-name byte-count))
94 (first-null (string-index header #\nul))
95 (match (string-match "%%Pages: ([0-9]+)"
96 (if (number? first-null)
97 (substring header 0 first-null)
99 (if match (string->number (match:substring match 1)) 0)))
101 (define-public (make-ps-images ps-name . rest)
108 (be-verbose (ly:get-option 'verbose))
109 (pixmap-format 'png16m)
110 (anti-alias-factor 1))
112 (let* ((format-str (format "~a" pixmap-format))
114 ((string-contains format-str "png") "png")
115 ((string-contains format-str "jpg") "jpeg")
116 ((string-contains format-str "jpeg") "jpeg")
118 (ly:error "Unknown pixmap format ~a" pixmap-format))))
119 (base (dir-basename ps-name ".ps" ".eps"))
120 (png1 (format "~a.~a" base extension))
121 (pngn (format "~a-page%d.~a" base extension))
122 (page-count (ps-page-count ps-name))
123 (multi-page? (> page-count 1))
124 (output-file (if multi-page? pngn png1))
128 (format #f "-dDEVICEWIDTHPOINTS=~,2f -dDEVICEHEIGHTPOINTS=~,2f"
129 page-width page-height)
134 -dGraphicsAlphaBits=4\
143 (if be-verbose "" "-q")
147 (* anti-alias-factor resolution) ps-name))
151 ;; The wrapper on windows cannot handle `=' signs,
152 ;; gs has a workaround with #.
153 (if (eq? PLATFORM 'windows)
155 (set! cmd (re-sub "=" "#" cmd))
156 (set! cmd (re-sub "-dSAFER " "" cmd))))
158 (set! status (my-system be-verbose #f cmd))
164 (format "~a-page~a.png" base (1+ n)))
166 (list (format "~a.png" base))))
168 (if (not (= 0 status))
170 (map delete-file files)
173 (if (and rename-page-1 multi-page?)
175 (rename-file (re-sub "%d" "1" pngn) png1)
181 (if (not (= 1 anti-alias-factor))
183 (lambda (f) (scale-down-image be-verbose anti-alias-factor f)) files))