Use make-temp-file.
[emacs.git] / lisp / ps-mule.el
blobd4ca6e8b5c03c771f89fb77b62d6ad4bfca7ce82
1 ;;; ps-mule.el --- Provide multi-byte character facility to ps-print.
3 ;; Copyright (C) 1998 Free Software Foundation, Inc.
5 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
6 ;; Author: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
7 ;; Maintainer: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
8 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
9 ;; Keywords: print, PostScript, multibyte, mule
10 ;; Time-stamp: <99/02/19 13:15:52 vinicius>
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
29 ;;; Commentary:
31 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
33 ;; About ps-mule
34 ;; -------------
36 ;; This package is used for ps-print to print multi-byte buffer.
38 ;; See also ps-print.el.
41 ;; Printing Multi-byte Buffer
42 ;; --------------------------
44 ;; The variable `ps-multibyte-buffer' specifies the ps-print multi-byte buffer
45 ;; handling.
47 ;; Valid values for `ps-multibyte-buffer' are:
49 ;; nil This is the value to use when you are printing
50 ;; buffer with only ASCII and Latin characters.
52 ;; `non-latin-printer' This is the value to use when you have a japanese
53 ;; or korean PostScript printer and want to print
54 ;; buffer with ASCII, Latin-1, Japanese (JISX0208 and
55 ;; JISX0201-Kana) and Korean characters. At present,
56 ;; it was not tested the Korean characters printing.
57 ;; If you have a korean PostScript printer, please,
58 ;; test it.
60 ;; `bdf-font' This is the value to use when you want to print
61 ;; buffer with BDF fonts. BDF fonts include both latin
62 ;; and non-latin fonts. BDF (Bitmap Distribution
63 ;; Format) is a format used for distributing X's font
64 ;; source file. BDF fonts are included in
65 ;; `intlfonts-1.1' which is a collection of X11 fonts
66 ;; for all characters supported by Emacs. In order to
67 ;; use this value, be sure to have installed
68 ;; `intlfonts-1.1' and set the variable
69 ;; `bdf-directory-list' appropriately (see ps-bdf.el
70 ;; for documentation of this variable).
72 ;; `bdf-font-except-latin' This is like `bdf-font' except that it is used
73 ;; PostScript default fonts to print ASCII and Latin-1
74 ;; characters. This is convenient when you want or
75 ;; need to use both latin and non-latin characters on
76 ;; the same buffer. See `ps-font-family',
77 ;; `ps-header-font-family' and `ps-font-info-database'.
79 ;; Any other value is treated as nil.
81 ;; The default is nil.
83 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
85 ;;; Code:
87 (eval-and-compile (require 'ps-print))
89 ;;;###autoload
90 (defcustom ps-multibyte-buffer nil
91 "*Specifies the multi-byte buffer handling.
93 Valid values are:
95 nil This is the value to use the default settings which
96 is by default for printing buffer with only ASCII
97 and Latin characters. The default setting can be
98 changed by setting the variable
99 `ps-mule-font-info-database-default' differently.
100 The initial value of this variable is
101 `ps-mule-font-info-database-latin' (which see).
103 `non-latin-printer' This is the value to use when you have a Japanese
104 or Korean PostScript printer and want to print
105 buffer with ASCII, Latin-1, Japanese (JISX0208 and
106 JISX0201-Kana) and Korean characters. At present,
107 it was not tested the Korean characters printing.
108 If you have a korean PostScript printer, please,
109 test it.
111 `bdf-font' This is the value to use when you want to print
112 buffer with BDF fonts. BDF fonts include both latin
113 and non-latin fonts. BDF (Bitmap Distribution
114 Format) is a format used for distributing X's font
115 source file. BDF fonts are included in
116 `intlfonts-1.1' which is a collection of X11 fonts
117 for all characters supported by Emacs. In order to
118 use this value, be sure to have installed
119 `intlfonts-1.1' and set the variable
120 `bdf-directory-list' appropriately (see ps-bdf.el for
121 documentation of this variable).
123 `bdf-font-except-latin' This is like `bdf-font' except that it is used
124 PostScript default fonts to print ASCII and Latin-1
125 characters. This is convenient when you want or
126 need to use both latin and non-latin characters on
127 the same buffer. See `ps-font-family',
128 `ps-header-font-family' and `ps-font-info-database'.
130 Any other value is treated as nil."
131 :type '(choice (const non-latin-printer) (const bdf-font)
132 (const bdf-font-except-latin) (other :tag "nil" nil))
133 :group 'ps-print-font)
135 ;; For Emacs 20.2 and the earlier version.
136 (eval-and-compile
137 (if (not (string< mule-version "4.0"))
138 (progn
139 (defalias 'ps-mule-next-point '1+)
140 (defalias 'ps-mule-chars-in-string 'length)
141 (defalias 'ps-mule-string-char 'aref)
142 (defsubst ps-mule-next-index (str i) (1+ i)))
143 (defun ps-mule-next-point (arg)
144 (save-excursion (goto-char arg) (forward-char 1) (point)))
145 (defun ps-mule-chars-in-string (string)
146 (/ (length string)
147 (charset-bytes (char-charset (string-to-char string)))))
148 (defun ps-mule-string-char (string idx)
149 (string-to-char (substring string idx)))
150 (defun ps-mule-next-index (string i)
151 (+ i (charset-bytes (char-charset (string-to-char string))))))
154 (defvar ps-mule-font-info-database
156 "Alist of charsets with the corresponding font information.
157 Each element has the form:
159 (CHARSET (FONT-TYPE FONT-SRC FONT-NAME ENCODING BYTES) ...)
161 Where
163 CHARSET is a charset (symbol) for this font family,
165 FONT-TYPE is a font type: normal, bold, italic, or bold-italic.
167 FONT-SRC is a font source: builtin, ps-bdf, vflib, or nil.
169 If FONT-SRC is builtin, FONT-NAME is a buitin PostScript font name.
171 If FONT-SRC is bdf, FONT-NAME is a BDF font file name, or a list of
172 alternative font names. To use this font, the external library `ps-bdf'
173 is required.
175 If FONT-SRC is vflib, FONT-NAME is the name of a font that VFlib knows.
176 To use this font, the external library `vflib' is required.
178 If FONT-SRC is nil, a proper ASCII font in the variable
179 `ps-font-info-database' is used. This is useful for Latin-1 characters.
181 ENCODING is a coding system to encode a string of characters of CHARSET into a
182 proper string matching an encoding of the specified font. ENCODING may be a
183 function that does this encoding. In this case, the function is called with
184 one argument, the string to encode, and it should return an encoded string.
186 BYTES specifies how many bytes each character has in the encoded byte
187 sequence; it should be 1 or 2.
189 All multi-byte characters are printed by fonts specified in this database
190 regardless of a font family of ASCII characters. The exception is Latin-1
191 characters which are printed by the same font as ASCII characters, thus obey
192 font family.
194 See also the variable `ps-font-info-database'.")
196 (defconst ps-mule-font-info-database-latin
197 '((latin-iso8859-1
198 (normal nil nil iso-latin-1)))
199 "Sample setting of `ps-mule-font-info-database' to use latin fonts.")
201 (defvar ps-mule-font-info-database-default
202 ps-mule-font-info-database-latin
203 "The default setting to use if `ps-multibyte-buffer' (which see) is nil.")
205 (defconst ps-mule-font-info-database-ps
206 '((katakana-jisx0201
207 (normal builtin "Ryumin-Light.Katakana" ps-mule-encode-7bit 1)
208 (bold builtin "GothicBBB-Medium.Katakana" ps-mule-encode-7bit 1)
209 (bold-italic builtin "GothicBBB-Medium.Katakana" ps-mule-encode-7bit 1))
210 (latin-jisx0201
211 (normal builtin "Ryumin-Light.Hankaku" ps-mule-encode-7bit 1)
212 (bold builtin "GothicBBB-Medium.Hankaku" ps-mule-encode-7bit 1))
213 (japanese-jisx0208
214 (normal builtin "Ryumin-Light-H" ps-mule-encode-7bit 2)
215 (bold builtin "GothicBBB-Medium-H" ps-mule-encode-7bit 2))
216 (korean-ksc5601
217 (normal builtin "Munhwa-Regular-KSC-EUC-H" ps-mule-encode-7bit 2)
218 (bold builtin "Munhwa-Bold-KSC-EUC-H" ps-mule-encode-7bit 2))
220 "Sample setting of the `ps-mule-font-info-database' to use builtin PS font.
222 Currently, data for Japanese and Korean PostScript printers are listed.")
224 (defconst ps-mule-font-info-database-bdf
225 '((ascii
226 (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf") nil 1)
227 (bold bdf ("lt1-16b-etl.bdf" "etl16b-latin1.bdf") nil 1)
228 (italic bdf ("lt1-16i-etl.bdf" "etl16i-latin1.bdf") nil 1)
229 (bold-italic bdf ("lt1-16bi-etl.bdf" "etl16bi-latin1.bdf") nil 1))
230 (latin-iso8859-1
231 (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf") iso-latin-1 1)
232 (bold bdf ("lt1-16b-etl.bdf" "etl16b-latin1.bdf") iso-latin-1 1)
233 (italic bdf ("lt1-16i-etl.bdf" "etl16i-latin1.bdf") iso-latin-1 1)
234 (bold-italic bdf ("lt1-16bi-etl.bdf" "etl16bi-latin1.bdf") iso-latin-1 1))
235 (latin-iso8859-2
236 (normal bdf ("lt2-24-etl.bdf" "etl24-latin2.bdf") iso-latin-2 1))
237 (latin-iso8859-3
238 (normal bdf ("lt3-24-etl.bdf" "etl24-latin3.bdf") iso-latin-3 1))
239 (latin-iso8859-4
240 (normal bdf ("lt4-24-etl.bdf" "etl24-latin4.bdf") iso-latin-4 1))
241 (thai-tis620
242 (normal bdf ("thai24.bdf" "thai-24.bdf") thai-tis620 1))
243 (greek-iso8859-7
244 (normal bdf ("grk24-etl.bdf" "etl24-greek.bdf") greek-iso-8bit 1))
245 ;; (arabic-iso8859-6 nil) ; not yet available
246 (hebrew-iso8859-8
247 (normal bdf ("heb24-etl.bdf" "etl24-hebrew.bdf") hebrew-iso-8bit 1))
248 (katakana-jisx0201
249 (normal bdf "12x24rk.bdf" ps-mule-encode-8bit 1))
250 (latin-jisx0201
251 (normal bdf "12x24rk.bdf" ps-mule-encode-7bit 1))
252 (cyrillic-iso8859-5
253 (normal bdf ("cyr24-etl.bdf" "etl24-cyrillic.bdf") cyrillic-iso-8bit 1))
254 (latin-iso8859-9
255 (normal bdf ("lt5-24-etl.bdf" "etl24-latin5.bdf") iso-latin-5 1))
256 (japanese-jisx0208-1978
257 (normal bdf "jiskan24.bdf" ps-mule-encode-7bit 2))
258 (chinese-gb2312
259 (normal bdf "gb24st.bdf" ps-mule-encode-7bit 2))
260 (japanese-jisx0208
261 (normal bdf "jiskan24.bdf" ps-mule-encode-7bit 2))
262 (korean-ksc5601
263 (normal bdf "hanglm24.bdf" ps-mule-encode-7bit 2))
264 (japanese-jisx0212
265 (normal bdf ("jksp40.bdf" "jisksp40.bdf") ps-mule-encode-7bit 2))
266 (chinese-cns11643-1
267 (normal bdf ("cns1-40.bdf" "cns-1-40.bdf") ps-mule-encode-7bit 2))
268 (chinese-cns11643-2
269 (normal bdf ("cns2-40.bdf" "cns-2-40.bdf") ps-mule-encode-7bit 2))
270 (chinese-big5-1
271 (normal bdf "taipei24.bdf" chinese-big5 2))
272 (chinese-big5-2
273 (normal bdf "taipei24.bdf" chinese-big5 2))
274 (chinese-sisheng
275 (normal bdf ("sish24-etl.bdf" "etl24-sisheng.bdf") ps-mule-encode-8bit 1))
276 (ipa
277 (normal bdf ("ipa24-etl.bdf" "etl24-ipa.bdf") ps-mule-encode-8bit 1))
278 (vietnamese-viscii-lower
279 (normal bdf ("visc24-etl.bdf" "etl24-viscii.bdf") vietnamese-viscii 1))
280 (vietnamese-viscii-upper
281 (normal bdf ("visc24-etl.bdf" "etl24-viscii.bdf") vietnamese-viscii 1))
282 (arabic-digit
283 (normal bdf ("arab24-0-etl.bdf" "etl24-arabic0.bdf") ps-mule-encode-7bit 1))
284 (arabic-1-column
285 (normal bdf ("arab24-1-etl.bdf" "etl24-arabic1.bdf") ps-mule-encode-7bit 1))
286 ;; (ascii-right-to-left nil) ; not yet available
287 (lao
288 (normal bdf ("lao24-mule.bdf" "mule-lao-24.bdf") lao 1))
289 (arabic-2-column
290 (normal bdf ("arab24-2-etl.bdf" "etl24-arabic2.bdf") ps-mule-encode-7bit 1))
291 (indian-is13194
292 (normal bdf ("isci24-etl.bdf" "mule-iscii-24.bdf") ps-mule-encode-7bit 1))
293 (indian-1-column
294 (normal bdf ("ind1c24-mule.bdf" "mule-indian-1col-24.bdf") ps-mule-encode-7bit 2))
295 (tibetan-1-column
296 (normal bdf ("tib1c24-mule.bdf" "mule-tibmdx-1col-24.bdf") ps-mule-encode-7bit 2))
297 (ethiopic
298 (normal bdf ("ethio24f-uni.bdf" "ethiomx24f-uni.bdf") ps-mule-encode-ethiopic 2))
299 (chinese-cns11643-3
300 (normal bdf ("cns3-40.bdf" "cns-3-40.bdf") ps-mule-encode-7bit 2))
301 (chinese-cns11643-4
302 (normal bdf ("cns4-40.bdf" "cns-4-40.bdf") ps-mule-encode-7bit 2))
303 (chinese-cns11643-5
304 (normal bdf ("cns5-40.bdf" "cns-5-40.bdf") ps-mule-encode-7bit 2))
305 (chinese-cns11643-6
306 (normal bdf ("cns6-40.bdf" "cns-6-40.bdf") ps-mule-encode-7bit 2))
307 (chinese-cns11643-7
308 (normal bdf ("cns7-40.bdf" "cns-7-40.bdf") ps-mule-encode-7bit 2))
309 (indian-2-column
310 (normal bdf ("ind24-mule.bdf" "mule-indian-24.bdf") ps-mule-encode-7bit 2))
311 (tibetan
312 (normal bdf ("tib24-mule.bdf" "mule-tibmdx-24.bdf") ps-mule-encode-7bit 2)))
313 "Sample setting of the `ps-mule-font-info-database' to use BDF fonts.
314 BDF (Bitmap Distribution Format) is a format used for distributing X's font
315 source file.
317 Current default value list for BDF fonts is included in `intlfonts-1.1' which is
318 a collection of X11 fonts for all characters supported by Emacs.
320 Using this list as default value to `ps-mule-font-info-database', all characters
321 including ASCII and Latin-1 are printed by BDF fonts.
323 See also `ps-mule-font-info-database-ps-bdf'.")
325 (defconst ps-mule-font-info-database-ps-bdf
326 (cons (car ps-mule-font-info-database-latin)
327 (cdr (cdr ps-mule-font-info-database-bdf)))
328 "Sample setting of the `ps-mule-font-info-database' to use BDF fonts.
330 Current default value list for BDF fonts is included in `intlfonts-1.1' which is
331 a collection of X11 fonts for all characters supported by Emacs.
333 Using this list as default value to `ps-mule-font-info-database', all characters
334 except ASCII and Latin-1 characters are printed by BDF fonts. ASCII and Latin-1
335 characters are printed by PostScript font specified by `ps-font-family' and
336 `ps-header-font-family'.
338 See also `ps-mule-font-info-database-bdf'.")
340 ;; Two typical encoding functions for PostScript fonts.
342 (defun ps-mule-encode-7bit (string)
343 (ps-mule-encode-bit string 0))
345 (defun ps-mule-encode-8bit (string)
346 (ps-mule-encode-bit string 128))
348 (defun ps-mule-encode-bit (string delta)
349 (let* ((dim (charset-dimension (char-charset (string-to-char string))))
350 (len (* (ps-mule-chars-in-string string) dim))
351 (str (make-string len 0))
352 (i 0)
353 (j 0))
354 (if (= dim 1)
355 (while (< j len)
356 (aset str j
357 (+ (nth 1 (split-char (ps-mule-string-char string i))) delta))
358 (setq i (ps-mule-next-index string i)
359 j (1+ j)))
360 (while (< j len)
361 (let ((split (split-char (ps-mule-string-char string i))))
362 (aset str j (+ (nth 1 split) delta))
363 (aset str (1+ j) (+ (nth 2 split) delta))
364 (setq i (ps-mule-next-index string i)
365 j (+ j 2)))))
366 str))
368 ;; Special encoding function for Ethiopic.
369 (define-ccl-program ccl-encode-ethio-unicode
371 ((read r2)
372 (loop
373 (if (r2 == ,leading-code-private-22)
374 ((read r0)
375 (if (r0 == ,(charset-id 'ethiopic))
376 ((read r1 r2)
377 (r1 &= 127) (r2 &= 127)
378 (call ccl-encode-ethio-font)
379 (write r1)
380 (write-read-repeat r2))
381 ((write r2 r0)
382 (repeat))))
383 (write-read-repeat r2))))))
385 (defun ps-mule-encode-ethiopic (string)
386 (ccl-execute-on-string (symbol-value 'ccl-encode-ethio-unicode)
387 (make-vector 9 nil)
388 string))
390 ;; A charset which we are now processing.
391 (defvar ps-mule-current-charset nil)
393 (defun ps-mule-get-font-spec (charset font-type)
394 "Return FONT-SPEC for printing characters CHARSET with FONT-TYPE.
395 FONT-SPEC is a list that has the form:
397 (FONT-SRC FONT-NAME ENCODING BYTES)
399 FONT-SPEC is extracted from `ps-mule-font-info-database'.
401 See the documentation of `ps-mule-font-info-database' for the meaning of each
402 element of the list."
403 (let ((slot (cdr (assq charset ps-mule-font-info-database))))
404 (and slot
405 (cdr (or (assq font-type slot)
406 (and (eq font-type 'bold-italic)
407 (or (assq 'bold slot) (assq 'italic slot)))
408 (assq 'normal slot))))))
410 ;; Functions to access each element of FONT-SPEC.
411 (defsubst ps-mule-font-spec-src (font-spec) (car font-spec))
412 (defsubst ps-mule-font-spec-name (font-spec) (nth 1 font-spec))
413 (defsubst ps-mule-font-spec-encoding (font-spec) (nth 2 font-spec))
414 (defsubst ps-mule-font-spec-bytes (font-spec) (nth 3 font-spec))
416 (defsubst ps-mule-printable-p (charset)
417 "Non-nil if characters in CHARSET is printable."
418 (ps-mule-get-font-spec charset 'normal))
420 (defconst ps-mule-external-libraries
421 '((builtin nil nil
422 nil nil nil)
423 (bdf ps-bdf nil
424 bdf-generate-prologue bdf-generate-font bdf-generate-glyphs)
425 (pcf nil nil
426 pcf-generate-prologue pcf-generate-font pcf-generate-glyphs)
427 (vflib nil nil
428 vflib-generate-prologue vflib-generate-font vflib-generate-glyphs))
429 "Alist of information of external libraries to support PostScript printing.
430 Each element has the form:
432 (FONT-SRC FEATURE INITIALIZED-P PROLOGUE-FUNC FONT-FUNC GLYPHS-FUNC)
434 FONT-SRC is the font source: builtin, bdf, pcf, or vflib.
436 FEATURE is the feature that provide a facility to handle FONT-SRC. Except for
437 `builtin' FONT-SRC, this feature is automatically `require'd before handling
438 FONT-SRC. Currently, we only have the feature `ps-bdf'.
440 INITIALIZED-P indicates if this library is initialized or not.
442 PROLOGUE-FUNC is a function to generate PostScript code which define several
443 PostScript procedures that will be called by FONT-FUNC and GLYPHS-FUNC. It is
444 called with no argument, and should return a list of strings.
446 FONT-FUNC is a function to generate PostScript code which define a new font. It
447 is called with one argument FONT-SPEC, and should return a list of strings.
449 GLYPHS-FUNC is a function to generate PostScript code which define glyphs of
450 characters. It is called with three arguments FONT-SPEC, CODE-LIST, and BYTES,
451 and should return a list of strings.")
453 (defun ps-mule-init-external-library (font-spec)
454 "Initialize external library specified by FONT-SPEC for PostScript printing.
455 See the documentation of `ps-mule-get-font-spec' for FONT-SPEC's meaning."
456 (let* ((font-src (ps-mule-font-spec-src font-spec))
457 (slot (assq font-src ps-mule-external-libraries)))
458 (or (not font-src)
459 (nth 2 slot)
460 (let ((func (nth 3 slot)))
461 (if func
462 (progn
463 (or (featurep (nth 1 slot)) (require (nth 1 slot)))
464 (ps-output-prologue (funcall func))))
465 (setcar (nthcdr 2 slot) t)))))
467 ;; Cached glyph information of fonts, alist of:
468 ;; (FONT-NAME ((FONT-TYPE-NUMBER . SCALED-FONT-NAME) ...)
469 ;; cache CODE0 CODE1 ...)
470 (defvar ps-mule-font-cache nil)
472 (defun ps-mule-generate-font (font-spec charset)
473 "Generate PostScript codes to define a new font in FONT-SPEC for CHARSET."
474 (let* ((font-name (ps-mule-font-spec-name font-spec))
475 (font-name (if (consp font-name) (car font-name) font-name))
476 (font-cache (assoc font-name ps-mule-font-cache))
477 (font-src (ps-mule-font-spec-src font-spec))
478 (func (nth 4 (assq font-src ps-mule-external-libraries)))
479 (scaled-font-name
480 (if (eq charset 'ascii)
481 (format "f%d" ps-current-font)
482 (format "f%02x-%d"
483 (charset-id charset) ps-current-font))))
484 (and func (not font-cache)
485 (ps-output-prologue (funcall func charset font-spec)))
486 (ps-output-prologue
487 (list (format "/%s %f /%s Def%sFontMule\n"
488 scaled-font-name ps-font-size-internal font-name
489 (if (eq ps-mule-current-charset 'ascii) "Ascii" ""))))
490 (if font-cache
491 (setcar (cdr font-cache)
492 (cons (cons ps-current-font scaled-font-name)
493 (nth 1 font-cache)))
494 (setq font-cache (list font-name
495 (list (cons ps-current-font scaled-font-name))
496 'cache)
497 ps-mule-font-cache (cons font-cache ps-mule-font-cache)))
498 font-cache))
500 (defun ps-mule-generate-glyphs (font-spec code-list)
501 "Generate PostScript codes which generate glyphs for CODE-LIST of FONT-SPEC."
502 (let* ((font-src (ps-mule-font-spec-src font-spec))
503 (func (nth 5 (assq font-src ps-mule-external-libraries))))
504 (and func
505 (ps-output-prologue
506 (funcall func font-spec code-list
507 (ps-mule-font-spec-bytes font-spec))))))
509 (defun ps-mule-prepare-font (font-spec string charset &optional no-setfont)
510 "Generate PostScript codes to print STRING of CHARSET by font FONT-SPEC.
512 The generated code is inserted on prologue part except the code that sets the
513 current font (using PostScript procedure `FM').
515 If optional arg NO-SETFONT is non-nil, don't generate the code for setting the
516 current font."
517 (let* ((font-name (ps-mule-font-spec-name font-spec))
518 (font-name (if (consp font-name) (car font-name) font-name))
519 (font-cache (assoc font-name ps-mule-font-cache)))
520 (or (and font-cache (assq ps-current-font (nth 1 font-cache)))
521 (setq font-cache (ps-mule-generate-font font-spec charset)))
522 (or no-setfont
523 (let ((new-font (cdr (assq ps-current-font (nth 1 font-cache)))))
524 (or (equal new-font ps-last-font)
525 (progn
526 (ps-output (format "/%s FM\n" new-font))
527 (setq ps-last-font new-font)))))
528 (if (nth 5 (assq (ps-mule-font-spec-src font-spec)
529 ps-mule-external-libraries))
530 ;; We have to generate PostScript codes which define glyphs.
531 (let* ((cached-codes (nthcdr 2 font-cache))
532 (bytes (ps-mule-font-spec-bytes font-spec))
533 (len (length string))
534 (i 0)
535 newcodes code)
536 (while (< i len)
537 (setq code (if (= bytes 1)
538 (aref string i)
539 (+ (* (aref string i) 256) (aref string (1+ i)))))
540 (or (memq code cached-codes)
541 (progn
542 (setq newcodes (cons code newcodes))
543 (setcdr cached-codes (cons code (cdr cached-codes)))))
544 (setq i (+ i bytes)))
545 (and newcodes
546 (ps-mule-generate-glyphs font-spec newcodes))))))
548 ;;;###autoload
549 (defun ps-mule-prepare-ascii-font (string)
550 "Setup special ASCII font for STRING.
551 STRING should contain only ASCII characters."
552 (let ((font-spec
553 (ps-mule-get-font-spec
554 'ascii
555 (car (nth ps-current-font (ps-font-alist 'ps-font-for-text))))))
556 (and font-spec
557 (ps-mule-prepare-font font-spec string 'ascii))))
559 ;;;###autoload
560 (defun ps-mule-set-ascii-font ()
561 (unless (eq ps-mule-current-charset 'ascii)
562 (ps-set-font ps-current-font)
563 (setq ps-mule-current-charset 'ascii)))
565 ;; List of charsets of multi-byte characters in a text being printed.
566 ;; If the text doesn't contain any multi-byte characters (i.e. only ASCII),
567 ;; the value is nil.
568 (defvar ps-mule-charset-list nil)
570 ;; This is a PostScript code inserted in the header of generated PostScript.
571 (defconst ps-mule-prologue
572 "%%%% Start of Mule Section
574 %% Working dictionary for general use.
575 /MuleDict 10 dict def
577 %% Adjust /RelativeCompose properly by checking /BaselineOffset.
578 /AdjustRelativeCompose { % fontdict |- fontdict
579 dup length 2 add dict begin
580 { 1 index /FID ne { def } { pop pop } ifelse } forall
581 currentdict /BaselineOffset known {
582 BaselineOffset false eq { /BaselinfOffset 0 def } if
584 /BaselineOffset 0 def
585 } ifelse
586 currentdict /RelativeCompose known not {
587 /RelativeCompose [ 0 0.1 ] def
589 RelativeCompose false ne {
590 [ BaselineOffset RelativeCompose BaselineOffset add
591 [ FontMatrix { FontSize div } forall ] transform ]
592 /RelativeCompose exch def
593 } if
594 } ifelse
595 currentdict
597 } def
599 %% Define already scaled font for non-ASCII character sets.
600 /DefFontMule { % fontname size basefont |- --
601 findfont exch scalefont AdjustRelativeCompose definefont pop
602 } bind def
604 %% Define already scaled font for ASCII character sets.
605 /DefAsciiFontMule { % fontname size basefont |-
606 MuleDict begin
607 findfont dup /Encoding get /ISOLatin1Encoding exch def
608 exch scalefont AdjustRelativeCompose reencodeFontISO
610 } def
612 %% Set the specified non-ASCII font to use. It doesn't install
613 %% Ascent, etc.
614 /FM { % fontname |- --
615 findfont setfont
616 } bind def
618 %% Show vacant box for characters which don't have appropriate font.
619 /SB { % count column |- --
620 SpaceWidth mul /w exch def
621 1 exch 1 exch { %for
623 gsave
624 0 setlinewidth
625 0 Descent rmoveto w 0 rlineto
626 0 LineHeight rlineto w neg 0 rlineto closepath stroke
627 grestore
628 w 0 rmoveto
629 } for
630 } bind def
632 %% Flag to tell if we are now handling a composite character. This is
633 %% defined here because both composite character handler and bitmap font
634 %% handler require it.
635 /Cmpchar false def
637 %%%% End of Mule Section
640 "PostScript code for printing multi-byte characters.")
642 (defvar ps-mule-prologue-generated nil)
644 (defun ps-mule-prologue-generated ()
645 (unless ps-mule-prologue-generated
646 (ps-output-prologue ps-mule-prologue)
647 (setq ps-mule-prologue-generated t)))
649 (defun ps-mule-find-wrappoint (from to char-width)
650 "Find the longest sequence which is printable in the current line.
652 The search starts at FROM and goes until TO. It is assumed that all characters
653 between FROM and TO belong to a charset in `ps-mule-current-charset'.
655 CHAR-WIDTH is the average width of ASCII characters in the current font.
657 Returns the value:
659 (ENDPOS . RUN-WIDTH)
661 Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
662 the sequence."
663 (if (eq ps-mule-current-charset 'composition)
664 ;; We must draw one char by one.
665 (let ((run-width (* (char-width (char-after from)) char-width)))
666 (if (> run-width ps-width-remaining)
667 (cons from ps-width-remaining)
668 (cons (ps-mule-next-point from) run-width)))
669 ;; We assume that all characters in this range have the same width.
670 (setq char-width (* char-width (charset-width ps-mule-current-charset)))
671 (let ((run-width (* (chars-in-region from to) char-width)))
672 (if (> run-width ps-width-remaining)
673 (cons (min to
674 (save-excursion
675 (goto-char from)
676 (forward-point
677 (truncate (/ ps-width-remaining char-width)))))
678 ps-width-remaining)
679 (cons to run-width)))))
681 ;;;###autoload
682 (defun ps-mule-plot-string (from to &optional bg-color)
683 "Generate PostScript code for ploting characters in the region FROM and TO.
685 It is assumed that all characters in this region belong to the same charset.
687 Optional argument BG-COLOR specifies background color.
689 Returns the value:
691 (ENDPOS . RUN-WIDTH)
693 Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
694 the sequence."
695 (setq ps-mule-current-charset (charset-after from))
696 (let* ((wrappoint (ps-mule-find-wrappoint
697 from to (ps-avg-char-width 'ps-font-for-text)))
698 (to (car wrappoint))
699 (font-type (car (nth ps-current-font
700 (ps-font-alist 'ps-font-for-text))))
701 (font-spec (ps-mule-get-font-spec ps-mule-current-charset font-type))
702 (string (buffer-substring-no-properties from to)))
703 (cond
704 ((= from to)
705 ;; We can't print any more characters in the current line.
706 nil)
708 (font-spec
709 ;; We surely have a font for printing this character set.
710 (ps-output-string (ps-mule-string-encoding font-spec string))
711 (ps-output " S\n"))
713 ((eq ps-mule-current-charset 'latin-iso8859-1)
714 ;; Latin-1 can be printed by a normal ASCII font.
715 (ps-output-string (ps-mule-string-ascii string))
716 (ps-output " S\n"))
718 ((eq ps-mule-current-charset 'composition)
719 (let* ((ch (char-after from))
720 (width (char-width ch))
721 (ch-list (decompose-composite-char ch 'list t)))
722 (if (consp (nth 1 ch-list))
723 (ps-mule-plot-rule-cmpchar ch-list width font-type)
724 (ps-mule-plot-cmpchar ch-list width t font-type))))
727 ;; No way to print this charset. Just show a vacant box of an
728 ;; appropriate width.
729 (ps-output (format "%d %d SB\n"
730 (length string)
731 (if (eq ps-mule-current-charset 'composition)
732 (char-width (char-after from))
733 (charset-width ps-mule-current-charset))))))
734 wrappoint))
736 ;; Composite font support
738 (defvar ps-mule-cmpchar-prologue-generated nil)
740 (defconst ps-mule-cmpchar-prologue
741 "%%%% Composite character handler
742 /CmpcharWidth 0 def
743 /CmpcharRelativeCompose 0 def
744 /CmpcharRelativeSkip 0.4 def
746 %% Get a bounding box (relative to currentpoint) of STR.
747 /GetPathBox { % str |- --
748 gsave
749 currentfont /FontType get 3 eq { %ifelse
750 stringwidth pop pop
752 currentpoint /y exch def /x exch def
753 false charpath flattenpath pathbbox
754 y sub /URY exch def x sub /URX exch def
755 y sub /LLY exch def x sub /LLX exch def
756 } ifelse
757 grestore
758 } bind def
760 %% Beginning of composite char.
761 /BC { % str xoff width |- --
762 /Cmpchar true def
763 /CmpcharWidth exch def
764 currentfont /RelativeCompose known {
765 /CmpcharRelativeCompose currentfont /RelativeCompose get def
767 /CmpcharRelativeCompose false def
768 } ifelse
769 /bgsave bg def /bgcolorsave bgcolor def
770 /Effectsave Effect def
771 gsave % Reflect effect only at first
772 /Effect Effect 1 2 add 4 add 16 add and def
773 /f0 findfont setfont ( ) 0 CmpcharWidth getinterval S
774 grestore
775 /Effect Effectsave 8 32 add and def % enable only shadow and outline
776 false BG
777 gsave
778 SpaceWidth mul 0 rmoveto dup GetPathBox S
779 /RIGHT currentpoint pop def
780 grestore
781 /y currentpoint exch pop def
782 /HIGH URY y add def /LOW LLY y add def
783 } bind def
785 %% End of composite char.
786 /EC { % -- |- --
787 /bg bgsave def /bgcolor bgcolorsave def
788 /Effect Effectsave def
789 /Cmpchar false def
790 CmpcharRelativeCompose false eq {
791 CmpcharWidth SpaceWidth mul 0 rmoveto
793 RIGHT currentpoint exch pop moveto
794 } ifelse
795 } bind def
797 %% Rule base composition
798 /RBC { % str xoff gref nref |- --
799 /nref exch def /gref exch def
800 gsave
801 SpaceWidth mul 0 rmoveto
803 GetPathBox
804 [ HIGH currentpoint exch pop LOW HIGH LOW add 2 div ] gref get
805 [ URY LLY sub LLY neg 0 URY LLY sub 2 div ] nref get
806 sub /btm exch def
807 /top btm URY LLY sub add def
808 top HIGH gt { /HIGH top def } if
809 btm LOW lt { /LOW btm def } if
810 currentpoint pop btm LLY sub moveto
812 grestore
813 /CmpcharRelativeCompose false def
814 } bind def
816 %% Relative composition
817 /RLC { % str |- --
818 gsave
819 dup GetPathBox
820 LLX 0 lt { RIGHT currentpoint exch pop moveto } if
821 CmpcharRelativeCompose type /arraytype eq {
822 LLY CmpcharRelativeCompose 1 get ge { % compose on top
823 currentpoint pop HIGH LLY sub CmpcharRelativeSkip add moveto
824 /HIGH HIGH URY LLY sub add CmpcharRelativeSkip add def
825 } { URY CmpcharRelativeCompose 0 get le { % compose under bottom
826 currentpoint pop LOW URY sub CmpcharRelativeSkip sub moveto
827 /LOW LOW URY LLY sub sub CmpcharRelativeSkip sub def
829 /y currentpoint exch pop def
830 y URY add dup HIGH gt { /HIGH exch def } { pop } ifelse
831 y LLY add dup LOW lt { /LOW exch def } { pop } ifelse
832 } ifelse } ifelse } if
834 grestore
835 } bind def
836 %%%% End of composite character handler
839 "PostScript code for printing composite characters.")
841 (defun ps-mule-plot-rule-cmpchar (ch-rule-list total-width font-type)
842 (let ((leftmost 0.0)
843 (rightmost (float (char-width (car ch-rule-list))))
844 (the-list (cons '(3 . 3) ch-rule-list))
845 cmpchar-elements)
846 (while the-list
847 (let* ((this (car the-list))
848 (gref (car this))
849 (nref (cdr this))
850 ;; X-axis info (0:left, 1:center, 2:right)
851 (gref-x (% gref 3))
852 (nref-x (% nref 3))
853 ;; Y-axis info (0:top, 1:base, 2:bottom, 3:center)
854 (gref-y (if (= gref 4) 3 (/ gref 3)))
855 (nref-y (if (= nref 4) 3 (/ nref 3)))
856 (char (car (cdr the-list)))
857 (width (float (char-width char)))
858 left)
859 (setq left (+ leftmost
860 (* (- rightmost leftmost) gref-x 0.5)
861 (- (* nref-x width 0.5)))
862 cmpchar-elements (cons (list char left gref-y nref-y)
863 cmpchar-elements)
864 leftmost (min left leftmost)
865 rightmost (max (+ left width) rightmost)
866 the-list (nthcdr 2 the-list))))
867 (if (< leftmost 0)
868 (let ((the-list cmpchar-elements)
869 elt)
870 (while the-list
871 (setq elt (car the-list)
872 the-list (cdr the-list))
873 (setcar (cdr elt) (- (nth 1 elt) leftmost)))))
874 (ps-mule-plot-cmpchar (nreverse cmpchar-elements)
875 total-width nil font-type)))
877 (defun ps-mule-plot-cmpchar (elements total-width relativep font-type)
878 (let* ((elt (car elements))
879 (ch (if relativep elt (car elt))))
880 (ps-output-string (ps-mule-prepare-cmpchar-font ch font-type))
881 (ps-output (format " %d %d BC "
882 (if relativep 0 (nth 1 elt))
883 total-width))
884 (while (setq elements (cdr elements))
885 (setq elt (car elements)
886 ch (if relativep elt (car elt)))
887 (ps-output-string (ps-mule-prepare-cmpchar-font ch font-type))
888 (ps-output (if relativep
889 " RLC "
890 (format " %d %d %d RBC "
891 (nth 1 elt) (nth 2 elt) (nth 3 elt))))))
892 (ps-output "EC\n"))
894 (defun ps-mule-prepare-cmpchar-font (char font-type)
895 (let* ((ps-mule-current-charset (char-charset char))
896 (font-spec (ps-mule-get-font-spec ps-mule-current-charset font-type)))
897 (cond (font-spec
898 (ps-mule-string-encoding font-spec (char-to-string char)))
900 ((eq ps-mule-current-charset 'latin-iso8859-1)
901 (ps-mule-string-ascii (char-to-string char)))
904 ;; No font for CHAR.
905 (ps-set-font ps-current-font)
906 " "))))
908 (defun ps-mule-string-ascii (str)
909 (ps-set-font ps-current-font)
910 (string-as-unibyte (encode-coding-string str 'iso-latin-1)))
912 (defun ps-mule-string-encoding (font-spec str)
913 (let ((encoding (ps-mule-font-spec-encoding font-spec)))
914 (setq str
915 (string-as-unibyte
916 (cond ((coding-system-p encoding)
917 (encode-coding-string str encoding))
918 ((functionp encoding)
919 (funcall encoding str))
920 (encoding
921 (error "Invalid coding system or function: %s" encoding))
923 str))))
924 (if (ps-mule-font-spec-src font-spec)
925 (ps-mule-prepare-font font-spec str ps-mule-current-charset)
926 (ps-set-font ps-current-font))
927 str))
929 ;; Bitmap font support
931 (defvar ps-mule-bitmap-prologue-generated nil)
933 (defconst ps-mule-bitmap-prologue
934 "%%%% Bitmap font handler
936 /str7 7 string def % working area
938 %% We grow the dictionary one bunch (1024 entries) by one.
939 /BitmapDictArray 256 array def
940 /BitmapDictLength 1024 def
941 /BitmapDictIndex -1 def
943 /NewBitmapDict { % -- |- --
944 /BitmapDictIndex BitmapDictIndex 1 add def
945 BitmapDictArray BitmapDictIndex BitmapDictLength dict put
946 } bind def
948 %% Make at least one dictionary.
949 NewBitmapDict
951 /AddBitmap { % gloval-charname bitmap-data |- --
952 BitmapDictArray BitmapDictIndex get
953 dup length BitmapDictLength ge {
955 NewBitmapDict
956 BitmapDictArray BitmapDictIndex get
957 } if
958 3 1 roll put
959 } bind def
961 /GetBitmap { % gloval-charname |- bitmap-data
962 0 1 BitmapDictIndex { BitmapDictArray exch get begin } for
963 load
964 0 1 BitmapDictIndex { pop end } for
965 } bind def
967 %% Return a global character name which can be used as a key in the
968 %% bitmap dictionary.
969 /GlobalCharName { % fontidx code1 code2 |- gloval-charname
970 exch 256 mul add exch 65536 mul add 16777216 add 16 str7 cvrs 0 66 put
971 str7 cvn
972 } bind def
974 %% Character code holder for a 2-byte character.
975 /FirstCode -1 def
977 %% Glyph rendering procedure
978 /BuildGlyphCommon { % fontdict charname |- --
979 1 index /FontDimension get 1 eq { /FirstCode 0 store } if
980 NameIndexDict exch get % STACK: fontdict charcode
981 FirstCode 0 lt { %ifelse
982 %% This is the first byte of a 2-byte character. Just
983 %% remember it for the moment.
984 /FirstCode exch store
986 0 0 setcharwidth
988 1 index /FontSize get /size exch def
989 1 index /FontSpaceWidthRatio get /ratio exch def
990 1 index /FontIndex get exch FirstCode exch
991 GlobalCharName GetBitmap /bmp exch def
992 %% bmp == [ DWIDTH BBX-WIDTH BBX-HEIGHT BBX-XOFF BBX-YOFF BITMAP ]
993 Cmpchar { %ifelse
994 /FontMatrix get [ exch { size div } forall ] /mtrx exch def
995 bmp 3 get bmp 4 get mtrx transform
996 /LLY exch def /LLX exch def
997 bmp 1 get bmp 3 get add bmp 2 get bmp 4 get add mtrx transform
998 /URY exch def /URX exch def
1001 } ifelse
1002 /FirstCode -1 store
1004 bmp 0 get SpaceWidthRatio ratio div mul size div 0 % wx wy
1005 setcharwidth % We can't use setcachedevice here.
1007 bmp 1 get 0 gt bmp 2 get 0 gt and {
1008 bmp 1 get bmp 2 get % width height
1009 true % polarity
1010 [ size 0 0 size neg bmp 3 get neg bmp 2 get bmp 4 get add ] % matrix
1011 bmp 5 1 getinterval cvx % datasrc
1012 imagemask
1013 } if
1014 } ifelse
1015 } bind def
1017 /BuildCharCommon {
1018 1 index /Encoding get exch get
1019 1 index /BuildGlyph get exec
1020 } bind def
1022 %% Bitmap font creater
1024 %% Common Encoding shared by all bitmap fonts.
1025 /EncodingCommon 256 array def
1026 %% Mapping table from character name to character code.
1027 /NameIndexDict 256 dict def
1028 0 1 255 { %for
1029 /idx exch def
1030 /idxname idx 256 add 16 (XXX) cvrs dup 0 67 put cvn def % `C' == 67
1031 EncodingCommon idx idxname put
1032 NameIndexDict idxname idx put
1033 } for
1035 /GlobalFontIndex 0 def
1037 %% fontname dim col fontsize relative-compose baseline-offset fbbx |- --
1038 /BitmapFont {
1039 15 dict begin
1040 /FontBBox exch def
1041 /BaselineOffset exch def
1042 /RelativeCompose exch def
1043 /FontSize exch def
1044 /FontBBox [ FontBBox { FontSize div } forall ] def
1045 FontBBox 2 get FontBBox 0 get sub exch div
1046 /FontSpaceWidthRatio exch def
1047 /FontDimension exch def
1048 /FontIndex GlobalFontIndex def
1049 /FontType 3 def
1050 /FontMatrix matrix def
1051 /Encoding EncodingCommon def
1052 /BuildGlyph { BuildGlyphCommon } def
1053 /BuildChar { BuildCharCommon } def
1054 currentdict end
1055 definefont pop
1056 /GlobalFontIndex GlobalFontIndex 1 add def
1057 } bind def
1059 %% Define a new bitmap font.
1060 %% fontname dim col fontsize relative-compose baseline-offset fbbx |- --
1061 /NF {
1062 /fbbx exch def
1063 %% Convert BDF's FontBoundingBox to PostScript's FontBBox
1064 [ fbbx 2 get fbbx 3 get
1065 fbbx 2 get fbbx 0 get add fbbx 3 get fbbx 1 get add ]
1066 BitmapFont
1067 } bind def
1069 %% Define a glyph for the specified font and character.
1070 /NG { % fontname charcode bitmap-data |- --
1071 /bmp exch def
1072 exch findfont dup /BaselineOffset get bmp 4 get add bmp exch 4 exch put
1073 /FontIndex get exch
1074 dup 256 idiv exch 256 mod GlobalCharName
1075 bmp AddBitmap
1076 } bind def
1077 %%%% End of bitmap font handler
1081 ;; External library support.
1083 ;; The following three functions are to be called from external
1084 ;; libraries which support bitmap fonts (e.g. `bdf') to get
1085 ;; appropriate PostScript code.
1087 (defun ps-mule-generate-bitmap-prologue ()
1088 (unless ps-mule-bitmap-prologue-generated
1089 (setq ps-mule-bitmap-prologue-generated t)
1090 (list ps-mule-bitmap-prologue)))
1092 (defun ps-mule-generate-bitmap-font (&rest args)
1093 (list (apply 'format "/%s %d %d %f %S %d %S NF\n" args)))
1095 (defun ps-mule-generate-bitmap-glyph (font-name code dwidth bbx bitmap)
1096 (format "/%s %d [ %d %d %d %d %d <%s> ] NG\n"
1097 font-name code
1098 dwidth (aref bbx 0) (aref bbx 1) (aref bbx 2) (aref bbx 3)
1099 bitmap))
1101 ;; Mule specific initializers.
1103 ;;;###autoload
1104 (defun ps-mule-initialize ()
1105 "Initialize global data for printing multi-byte characters."
1106 (setq ps-mule-font-cache nil
1107 ps-mule-prologue-generated nil
1108 ps-mule-cmpchar-prologue-generated nil
1109 ps-mule-bitmap-prologue-generated nil)
1110 (mapcar `(lambda (x) (setcar (nthcdr 2 x) nil))
1111 ps-mule-external-libraries))
1113 ;;;###autoload
1114 (defun ps-mule-begin-job (from to)
1115 "Start printing job for multi-byte chars between FROM and TO.
1116 This checks if all multi-byte characters in the region are printable or not."
1117 (setq ps-mule-charset-list nil
1118 ps-mule-font-info-database
1119 (cond ((eq ps-multibyte-buffer 'non-latin-printer)
1120 ps-mule-font-info-database-ps)
1121 ((eq ps-multibyte-buffer 'bdf-font)
1122 ps-mule-font-info-database-bdf)
1123 ((eq ps-multibyte-buffer 'bdf-font-except-latin)
1124 ps-mule-font-info-database-ps-bdf)
1126 ps-mule-font-info-database-default)))
1127 (and (boundp 'enable-multibyte-characters)
1128 enable-multibyte-characters
1129 ;; Initialize `ps-mule-charset-list'. If some characters aren't
1130 ;; printable, warn it.
1131 (let ((charsets (find-charset-region from to)))
1132 (setq charsets (delq 'ascii (delq 'unknown (delq nil charsets)))
1133 ps-mule-charset-list charsets)
1134 (save-excursion
1135 (goto-char from)
1136 (and (search-forward "\200" to t)
1137 (setq ps-mule-charset-list
1138 (cons 'composition ps-mule-charset-list))))
1139 (while charsets
1140 (setq charsets
1141 (cond
1142 ((or (eq (car charsets) 'composition)
1143 (ps-mule-printable-p (car charsets)))
1144 (cdr charsets))
1145 ((y-or-n-p
1146 "Font for some characters not found, continue anyway? ")
1147 nil)
1149 (error "Printing cancelled")))))))
1151 (setq ps-mule-current-charset 'ascii)
1153 (if ps-mule-charset-list
1154 (let ((the-list ps-mule-charset-list)
1155 font-spec elt)
1156 (ps-mule-prologue-generated)
1157 ;; If external functions are necessary, generate prologues for them.
1158 (while the-list
1159 (setq elt (car the-list)
1160 the-list (cdr the-list))
1161 (cond ((and (eq elt 'composition)
1162 (not ps-mule-cmpchar-prologue-generated))
1163 (ps-output-prologue ps-mule-cmpchar-prologue)
1164 (setq ps-mule-cmpchar-prologue-generated t))
1165 ((setq font-spec (ps-mule-get-font-spec elt 'normal))
1166 (ps-mule-init-external-library font-spec))))))
1168 ;; If ASCII font is also specified in ps-mule-font-info-database,
1169 ;; use it istead of what specified in ps-font-info-database.
1170 (let ((font-spec (ps-mule-get-font-spec 'ascii 'normal)))
1171 (if font-spec
1172 (progn
1173 (ps-mule-prologue-generated)
1174 (ps-mule-init-external-library font-spec)
1175 (let ((font (ps-font-alist 'ps-font-for-text))
1176 (ps-current-font 0))
1177 (while font
1178 ;; Be sure to download a glyph for SPACE in advance.
1179 (ps-mule-prepare-font (ps-mule-get-font-spec 'ascii (car font))
1180 " " 'ascii 'no-setfont)
1181 (setq font (cdr font)
1182 ps-current-font (1+ ps-current-font)))))))
1184 (if ps-mule-charset-list
1185 ;; We must change this regexp for multi-byte buffer.
1186 (setq ps-control-or-escape-regexp
1187 (cond ((eq ps-print-control-characters '8-bit)
1188 "[^\040-\176]")
1189 ((eq ps-print-control-characters 'control-8-bit)
1190 (string-as-multibyte "[^\040-\176\240-\377]"))
1191 ((eq ps-print-control-characters 'control)
1192 (string-as-multibyte "[^\040-\176\200-\377]"))
1193 (t (string-as-multibyte "[^\000-\011\013\015-\377]"))))))
1195 ;;;###autoload
1196 (defun ps-mule-begin-page ()
1197 (setq ps-mule-current-charset 'ascii))
1200 (provide 'ps-mule)
1202 ;;; ps-mule.el ends here