1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
|
;;; cl-pdf copyright 2002-2005 Marc Battyani see license.txt for the details
;;; You can reach me at marc.battyani@fractalconcept.com or marc@battyani.net
;;; The homepage of cl-pdf is here: http://www.fractalconcept.com/asp/html/cl-pdf.html
(in-package #:pdf)
(defparameter *version* 2.03)
(defparameter +pdf-header+ "%PDF-1.4")
(defvar *document* nil)
(defvar *outlines-stack* nil)
(defvar *root-page* nil)
(defvar *page* nil)
(defvar *page-number* nil)
(defvar *page-stream* nil)
(defvar *pdf-stream* nil)
(defvar *xrefs* nil)
(defvar *name-counter* 100)
(defun gen-name (prefix)
(format nil "~a~d" prefix (incf *name-counter*)))
(defgeneric make-dictionary (thing &key &allow-other-keys))
(defgeneric font-descriptor (font-metrics &key embed errorp))
(defclass dictionary ()
((dict-values :accessor dict-values :initform nil :initarg :dict-values)))
(defun add-dict-value (dict name value)
(push (cons name value)(dict-values dict)))
(defun get-dict-value (dict name)
(cdr (assoc name (dict-values dict) :test #'string=)))
(defun change-dict-value (dict name value)
(let ((key-val (assoc name (dict-values dict) :test #'string=)))
(if key-val
(setf (cdr key-val) value)
(add-dict-value dict name value))))
(defclass pdf-stream (dictionary)
((content :accessor content :initform "" :initarg :content)
(no-compression :accessor no-compression :initarg :no-compression :initform nil)))
(defmethod initialize-instance :after ((obj pdf-stream) &rest init-options &key empty &allow-other-keys)
(unless empty
(add-dict-value obj "/Length"
#'(lambda ()
(let ((content (content obj)))
(if (consp content)
(reduce #'+ content :key #'length)
(length content)))))))
(defun compress-pdf-stream (pdf-stream)
(when (and *compress-streams* (not (no-compression pdf-stream))
(> (length (content pdf-stream)) *min-size-for-compression*))
(setf (content pdf-stream) (compress-string (content pdf-stream)))
(let ((filter (get-dict-value pdf-stream "/Filter")))
(if filter
(change-dict-value pdf-stream "/Filter" (vector "/FlateDecode" filter))
(add-dict-value pdf-stream "/Filter" "/FlateDecode")))
(setf (no-compression pdf-stream) t)))
(defclass document ()
((objects :accessor objects :initform nil)
(root-page :accessor root-page :initform nil)
(catalog :accessor catalog :initform nil)
(outline-root :accessor outline-root :initform nil)
(named-refs :accessor named-refs :initform (make-hash-table :test #'equal))
(fonts :accessor fonts :initform '())
(gstates :accessor gstates :initform '())
(encodings :accessor encodings :initform '())
(last-object-number :accessor last-object-number :initform 0)
(docinfo :accessor docinfo :initform nil)
(author :accessor author :initarg :author :initform nil)
(title :accessor title :initarg :title :initform nil)
(keywords :accessor keywords :initarg :keywords :initform nil)
(subject :accessor subject :initarg :subject :initform nil)))
(defmethod initialize-instance :after ((doc document) &rest init-options
&key (creator "")
empty author title subject keywords
&allow-other-keys)
(declare (ignore init-options))
(unless empty
(let ((*document* doc))
(setf (objects doc) (make-array 10 :fill-pointer 0 :adjustable t))
(setf (catalog doc) (make-instance 'indirect-object))
(setf (root-page doc) (make-instance 'page-node))
(setf (outline-root doc)(make-instance 'outline))
(setf (content (catalog doc))
(make-instance 'dictionary
:dict-values `(("/Type" . "/Catalog")
("/Pages" . ,(root-page doc)))))
(add-doc-info doc :creator creator :author author
:title title :subject subject :keywords keywords)
)))
(defun add-doc-info (doc &key (creator "") author title subject keywords)
(setf (docinfo doc) (make-instance 'indirect-object))
(setf (content (docinfo doc))
(make-instance 'dictionary
:dict-values `(("/Creator" . ,(format nil "(cl-pdf ~A - ~A)" *version* creator))
,@(when author `(("/Author" . ,(format nil "(~A)" author))))
,@(when title `(("/Title" . ,(format nil "(~A)" title))))
,@(when subject `(("/Subject" . ,(format nil "(~A)" subject))))
,@(when keywords `(("/Keywords" . ,(format nil "(~A)" keywords))))
("/CreationDate" .
,(multiple-value-bind (second minute hour date month year)
(get-decoded-time)
(format nil "(D:~D~2,'0D~2,'0D~2,'0D~2,'0D~2,'0D)"
year month date hour minute second)))))))
(defclass indirect-object ()
((obj-number :accessor obj-number :initform (incf (last-object-number *document*)) :initarg :obj-number)
(gen-number :accessor gen-number :initform 0 :initarg :gen-number)
(content :accessor content :initform nil :initarg :content)))
(defmethod initialize-instance :after ((obj indirect-object) &rest init-options
&key no-link &allow-other-keys)
(unless no-link
(vector-push-extend obj (objects *document*))))
(defclass object-ref ()
((obj-number :accessor obj-number :initform 0 :initarg :obj-number)
(gen-number :accessor gen-number :initform 0 :initarg :gen-number)))
(defclass page-node (indirect-object)
((pages :accessor pages :initform (make-array 1 :fill-pointer 0 :adjustable t))))
(defmethod initialize-instance :after ((obj page-node) &rest init-options &key no-link &allow-other-keys)
(when (and *root-page* (not no-link))
(vector-push-extend obj (pages *root-page*)))
(setf (content obj) (make-instance 'dictionary
:dict-values `(("/Type" . "/Pages")
("/Count" . ,#'(lambda ()(length (pages obj))))
,@(when *root-page* `(("/Parent" . ,*root-page*)))
("/Kids" . ,(pages obj))))))
(defclass page (indirect-object)
((bounds :accessor bounds :initform *default-page-bounds* :initarg :bounds)
(resources :accessor resources :initform (make-instance 'dictionary))
(fonts :accessor fonts :initform '())
(font-objects :accessor font-objects :initform (make-instance 'dictionary))
(gstates :accessor gstates :initform '())
(gstate-objects :accessor gstate-objects :initform (make-instance 'dictionary))
(xobjects :accessor xobjects :initform (make-instance 'dictionary))
(annotations :accessor annotations :initform (make-array 0 :fill-pointer 0 :adjustable t))
(content-stream :accessor content-stream)
))
(defmethod initialize-instance :after ((page page) &rest init-options
&key no-link (rotate 0) &allow-other-keys)
(when (and *root-page* (not no-link))
(incf *page-number*)
(when (> *page-number* *max-number-of-pages*)
(throw 'max-number-of-pages-reached nil))
(vector-push-extend page (pages *root-page*)))
(setf (content-stream page) (make-instance 'pdf-stream))
(add-dict-value (resources page) "/Font" (font-objects page))
(add-dict-value (resources page) "/ExtGState" (gstate-objects page))
(add-dict-value (resources page) "/ProcSet" "[ /PDF /Text ]")
(add-dict-value (resources page) "/XObject" (xobjects page))
(let ((content (make-instance 'indirect-object :content (content-stream page))))
(setf (content page)
(make-instance 'dictionary
:dict-values `(("/Type" . "/Page")
("/Parent" ,*root-page*)
("/MediaBox" . ,#'(lambda ()(bounds page)))
("/Resources" . ,(resources page))
("/Annots" ,(annotations page))
("/Rotate" . ,rotate)
("/Contents" . ,content))))))
(defclass named-reference ()
((name :accessor name :initarg :name)
(reference :accessor reference :initform nil)))
(defun get-named-reference (name)
(let ((ref (gethash name (named-refs *document*))))
(unless ref
(setf ref (make-instance 'named-reference :name name))
(setf (gethash name (named-refs *document*)) ref))
ref))
(defun register-named-reference (reference &optional (name (gen-name "R")))
(setf (reference (get-named-reference name)) reference)
name)
(defun register-page-reference (&optional (name (gen-name "R")))
(register-named-reference (vector *page* "/Fit") name)
name)
(defclass outline (indirect-object)
((title :accessor title :initarg :title :initform nil)
(reference :accessor reference :initform nil :initarg :reference)
(sub-levels :accessor sub-levels :initform nil)
(prev-outline :accessor prev-outline :initform nil)
(next-outline :accessor next-outline :initform nil)))
(defun enter-outline-level (title ref-name)
(let ((outline (make-instance 'outline :title title :reference (get-named-reference ref-name)))
(parent (first *outlines-stack*)))
(setf (sub-levels parent)(nconc (sub-levels parent)(list outline)))
(push outline *outlines-stack*)))
(defun close-outline-level ()
(pop *outlines-stack*))
(defmacro string-append (&rest args)
#+lispworks `(lw:string-append ,@args)
#-lispworks `(concatenate 'string ,@args))
(defun pdf-string (obj)
;;; Used to embrace a pdf string used in places other than content streams,
;; e.g. annotations.
(let ((string (if (stringp obj) obj (princ-to-string obj))))
(with-output-to-string (stream nil #-cmu :element-type #-cmu (array-element-type string))
(write-char #\( stream)
(loop for char across string
do (case char ((#\( #\) #\\) (write-char #\\ stream)))
(write-char char stream))
(write-char #\) stream))))
(defmacro with-outline-level ((title ref-name) &body body)
`(unwind-protect
(progn (enter-outline-level ,title ,ref-name)
,@body)
(close-outline-level)))
(defun compute-outline-tree (outlines &optional (parent nil))
(loop for prev = nil then outline
for outline in outlines
do
(when prev (setf (next-outline prev) outline))
(setf (prev-outline outline) prev)
(compute-outline-tree (sub-levels outline) outline))
(loop for outline in outlines
for sub-levels = (sub-levels outline)
for first = (first sub-levels)
for last = (first (last sub-levels))
do
(with-slots ((reference reference)(prev-outline prev-outline)(next-outline next-outline)) outline
(setf (content outline)
(make-instance 'dictionary
:dict-values `(,@(if parent `(("/Title" . ,(pdf-string (title outline)))
("/Parent" . ,parent))
'(("/Type" "/Outlines")))
,@(when first `(("/First" . ,first)))
,@(when last `(("/Last" . ,last)))
,@(when prev-outline `(("/Prev" . ,prev-outline)))
,@(when next-outline `(("/Next" . ,next-outline)))
,@(when reference `(("/Dest" . ,reference)))
("/Count" . "0")))))))
(defun process-outlines (document)
(when (and (outline-root document) (sub-levels (outline-root document)))
(compute-outline-tree (list (outline-root document)))
(add-dict-value (content (catalog document)) "/Outlines" (outline-root document))))
(defun pdf-name (obj &optional (prefix #\/))
;; Helper (akin to pdf-string) to escape non-alphanumeric characters in PDF names
;; by writing 2-digit hexadecimal code, preceded by the number sign character (#).
;; CAUTION: PDF names are case-sensitive!
(let ((string (if (stringp obj)
(if (and prefix (char= (schar obj 0) prefix))
(return-from pdf-name obj) ; PDF-ready
obj)
(princ-to-string obj))))
(with-output-to-string (stream nil #-cmu :element-type #-cmu (array-element-type string))
(when prefix
(write-char prefix stream))
(dotimes (i (length string))
(let ((char (schar string i)))
(if (or (alphanumericp char)
(find char "-_." :test #'char=)) ; often used regular chars
(write-char char stream)
(format stream "#~2,'0x" (char-code char))))))))
(defmacro enforce-/ (&rest names)
;;; Verify and prefix each name by / unless it is PDF-ready.
`(setf ,@(loop for name in names collect name collect `(pdf-name ,name))))
(defun add-/ (name)
(concatenate 'string "/" name))
(defclass encoding-object (indirect-object)
((encoding :accessor encoding :initarg :encoding)))
(defmethod initialize-instance :after ((encoding-object encoding-object)
&rest init-options
&key encoding &allow-other-keys)
(setf (content encoding-object) (make-dictionary encoding)))
(defun find-encoding-object (encoding)
(let ((encoding-object (cdr (assoc encoding (encodings *document*)))))
(unless encoding-object
(setf encoding-object (make-instance 'encoding-object :encoding encoding))
(push (cons encoding encoding-object) (encodings *document*)))
encoding-object))
(defclass font-object (indirect-object)
((name :accessor name :initform (gen-name "/CLF") :initarg :name)
(font :accessor font :initarg :font)))
(defmethod initialize-instance :after ((font-object font-object) &rest initargs
&key font (embed *embed-fonts*)
&allow-other-keys)
(setf (content font-object) (make-dictionary (font-metrics font)
:font font :embed embed)))
(defun find-font-object (font &key (embed :default))
(let ((font-object (cdr (assoc font (fonts *document*)))))
(unless font-object
(setf font-object (make-instance 'font-object :font font :embed embed))
(push (cons font font-object) (fonts *document*)))
font-object))
(defun add-font-to-page (font &key (embed :default))
(let ((font-object (cdr (assoc font (fonts *page*)))))
(unless font-object
(setf font-object (find-font-object font :embed embed))
(push (cons font font-object) (fonts *page*))
(add-dict-value (font-objects *page*) (name font-object) font-object))
font-object))
(defclass gstate-object (indirect-object)
((name :accessor name :initform (gen-name "/GS") :initarg :name)))
(defmethod initialize-instance :after ((gstate-object gstate-object) &rest init-options &key gstate &allow-other-keys)
(setf (content gstate-object) (make-instance 'dictionary :dict-values '(("/Type" . "/ExtGState"))))
(loop for (name value) on gstate by #'cddr
do (add-dict-value (content gstate-object) (format nil "/~a" name) value)))
(defun find-gstate-object (&rest gstate)
(let ((gstate-object (cdr (assoc gstate (gstates *document*) :test #'equal))))
(unless gstate-object
(setf gstate-object (make-instance 'gstate-object :gstate gstate))
(push (cons gstate gstate-object) (gstates *document*)))
gstate-object))
(defun add-gstate-to-page (&rest gstate)
(let ((gstate-object (cdr (assoc gstate (gstates *page*) :test #'equal))))
(unless gstate-object
(setf gstate-object (apply #'find-gstate-object gstate))
(push (cons gstate gstate-object) (gstates *page*))
(add-dict-value (gstate-objects *page*) (name gstate-object) gstate-object))
gstate-object))
(defclass image (indirect-object)
((name :accessor name :initform (gen-name "/CLI") :initarg :name)
(width :accessor width :initarg :width)
(height :accessor height :initarg :height)))
(defmethod initialize-instance :after ((image image) &rest init-options &key
bits width height
(filter "ASCIIHexDecode") decode-parms
(color-space "DeviceRGB")(bits-per-color 8)
mask decode
no-compression
&allow-other-keys)
;;; Args: color-space - can be an array!
(enforce-/ filter) ; color-space)
(when (stringp color-space)
(enforce-/ color-space))
(setf (content image)
(make-instance 'pdf-stream
:no-compression no-compression
:dict-values `(("/Type" . "/XObject")("/Subtype" . "/Image")
("/Width" . ,width)("/Height" . ,height)
("/Filter" . ,filter)
,@(when decode-parms `(("/DecodeParms" .
,(make-instance 'dictionary
:dict-values decode-parms))))
("/ColorSpace" . ,color-space)
("/BitsPerComponent" . ,bits-per-color)
,@(when decode `(("/Decode" . ,decode)))
,@(when mask `(("/Mask" . ,mask))) )))
(setf (content (content image)) bits))
(defun add-images-to-page (&rest images)
(dolist (image images)
(add-dict-value (xobjects *page*) (name image) image)))
(defclass annotation (indirect-object)
())
(defmethod initialize-instance :after ((annotation annotation) &rest init-options &key
rect type (border #(0 0 0))
&allow-other-keys)
(enforce-/ type)
(vector-push-extend annotation (annotations *page*))
(setf (content annotation)
(make-instance 'dictionary
:dict-values `(("/Type" . "/Annot")("/Subtype" . ,type)
("/Rect" . ,rect)("/Border" . ,border)))))
(defclass annotation2 (indirect-object)
())
(defmethod initialize-instance :after ((annotation annotation2) &rest init-options &key
rect type text
&allow-other-keys)
(enforce-/ type)
(vector-push-extend annotation (annotations *page*))
(setf (content annotation)
(make-instance 'dictionary
:dict-values `(("/Type" . "/Annot")("/Subtype" . "/Text")
("/Rect" . ,rect)("/Contents" . ,text)))))
(defmethod write-object ((obj null) &optional root-level)
(declare (ignorable root-level))
(write-string "null" *pdf-stream*))
(defmethod write-object ((obj dictionary) &optional root-level)
(declare (ignorable root-level))
(write-string "<< " *pdf-stream*)
(loop for (key . val) in (dict-values obj)
when val do
(write-string key *pdf-stream*)
(write-char #\Space *pdf-stream*)
(write-object val)
(write-char #\Newline *pdf-stream*))
(write-line " >>" *pdf-stream*))
(defmethod write-stream-content ((obj string))
(write-sequence obj *pdf-stream*))
(defmethod write-stream-content ((obj sequence))
#+pdf-binary
(write-sequence obj *pdf-stream*)
#-pdf-binary
(loop for c across obj do
(write-char (code-char c) *pdf-stream*)))
(defmethod write-stream-content ((obj list))
(map nil 'write-stream-content obj))
(defmethod write-object ((obj pdf-stream) &optional root-level)
(declare (ignorable root-level))
(compress-pdf-stream obj)
(call-next-method)
(write-line "stream" *pdf-stream*)
(write-stream-content (content obj))
(write-char #\Newline *pdf-stream*)
(write-line "endstream" *pdf-stream*))
(defmethod write-object ((obj object-ref) &optional root-level)
(declare (ignorable root-level))
(format *pdf-stream* "~d ~d R" (obj-number obj)(gen-number obj)))
(defmethod write-object ((obj indirect-object) &optional root-level)
(if root-level
(progn
(vector-push-extend (format nil "~10,'0d ~5,'0d n "
(file-position *pdf-stream*)(gen-number obj))
*xrefs*)
(format *pdf-stream* "~d ~d obj~%" (obj-number obj)(gen-number obj))
(when (content obj)(write-object (content obj)))
(write-string " endobj" *pdf-stream*)
(write-char #\Newline *pdf-stream*))
(format *pdf-stream* "~d ~d R" (obj-number obj)(gen-number obj))))
(defmethod write-object ((list list) &optional root-level)
(declare (ignorable root-level))
(dolist (obj list)
(write-object obj)
(write-char #\Space *pdf-stream*)))
(defmethod write-object ((obj string) &optional root-level)
(declare (ignorable root-level))
(write-string obj *pdf-stream*))
(defmethod write-object ((obj symbol) &optional root-level)
(declare (ignorable root-level))
(write-string (symbol-name obj) *pdf-stream*))
(defmethod write-object ((obj function) &optional root-level)
(declare (ignorable root-level))
(write-object (funcall obj)))
(defmethod write-object ((obj number) &optional root-level)
(declare (ignorable root-level))
(if (integerp obj)
(princ obj *pdf-stream*)
;; rationals and such aren't allowed.
(format *pdf-stream* "~,3f" obj)))
(defmethod write-object ((obj t) &optional root-level)
(declare (ignorable root-level))
(princ obj *pdf-stream*))
(defmethod write-object ((array array) &optional root-level)
(declare (ignorable root-level))
(write-string "[ " *pdf-stream*)
(loop for obj across array do
(write-object obj)
(write-char #\Space *pdf-stream*))
(write-char #\] *pdf-stream*))
(defmethod write-object ((obj named-reference) &optional root-level)
(declare (ignorable root-level))
(write-object (reference obj)))
(defmethod write-document ((s stream) &optional (document *document*))
(let ((*xrefs* (make-array 10 :adjustable t :fill-pointer 0))
startxref
(*pdf-stream* s))
(with-standard-io-syntax
(process-outlines document)
(vector-push-extend "0000000000 65535 f " *xrefs*)
(write-line +pdf-header+ s)
(loop for obj across (objects document)
for first = t then nil
if obj do (write-object obj t)
else do (unless first (vector-push-extend "0000000000 00001 f " *xrefs*)))
(setf startxref (file-position s))
(format *pdf-stream* "xref~%0 ~d~%" (length *xrefs*))
(loop for xref across *xrefs*
do (write-line xref s))
(format s "trailer~%<< /Size ~d~%/Root " (length *xrefs*));(1- (length (objects document))))
(write-object (catalog document))
(when (docinfo document)
(format s " /Info ")
(write-object (docinfo document)))
(format s "~%>>~%startxref~%~d~%%%EOF~%" startxref))))
(defmethod write-document ((filename pathname) &optional (document *document*))
(with-open-file (s filename :direction :output :if-exists :supersede
:external-format +external-format+)
(write-document s document)))
(defmethod write-document ((filename string) &optional (document *document*))
(write-document (pathname filename) document))
(defmacro with-document ((&rest args &key (max-number-of-pages '*max-number-of-pages*) &allow-other-keys)
&body body)
`(let* ((*document* (make-instance 'document ,@args))
(*outlines-stack* (list (outline-root *document*)))
(*root-page* (root-page *document*))
(*page* nil)
(*page-number* 0)
(*max-number-of-pages* ,max-number-of-pages))
(catch 'max-number-of-pages-reached
,@body)))
(defmacro with-page ((&rest args) &body body)
`(let* ((*page* (make-instance 'page ,@args)))
(with-standard-io-syntax
(setf (content (content-stream *page*))
(with-output-to-string (*page-stream*)
,@body)))
t))
|