]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/output-ps.scm
Small makefile fix required for compiling on FreeBSD.
[lilypond.git] / scm / output-ps.scm
index cc021b84234809fdaaae12fb4e0666b5a0bd9e94..a77a3fe3c4ac3c4cfa5b67db91da3aa3398eb866 100644 (file)
 
 (define (glyph-string
         postscript-font-name
-        size
+        size cid?
         x-y-named-glyphs)
+
   (format #f "gsave 1 output-scale div 1 output-scale div scale
-  /~a findfont ~a scalefont setfont\n~a grestore" postscript-font-name size
-  (apply
-   string-append
-   (map (lambda  (item)
-         (let
-             ((x (car item))
-               (y (cadr item))
-               (g (caddr item)))
-
-           (if (and (= 0.0 x)
-                    (= 0.0 y))
-               (format #f " /~a glyphshow\n" g)
-               (format #f " ~a ~a rmoveto ~a~a glyphshow\n"
-                       x y
-                       (if  (string? g) "/" "")
-                       g))))
-       x-y-named-glyphs))))
+  /~a ~a ~a scalefont setfont\n~a grestore"
+         postscript-font-name
+         (if cid?
+             " /CIDFont findresource "
+             " findfont") 
+         
+         size
+         (apply
+          string-append
+          (map (lambda  (item)
+                 (let*
+                     ((x (car item))
+                      (y (cadr item))
+                      (g (caddr item))
+                      (prefix (if  (string? g) "/" "")))
+
+                   (if (and (= 0.0 x)
+                            (= 0.0 y))
+                       (format #f " ~a~a glyphshow\n" prefix g)
+                       (format #f " ~a ~a rmoveto ~a~a glyphshow\n"
+                               x y
+                               prefix
+                               g))))
+               x-y-named-glyphs))))
 
 (define (grob-cause offset grob)
   (let* ((cause (ly:grob-property grob 'cause))