]> git.donarmstrong.com Git - xournal.git/blob - src/xo-print.c
Print via gtk-print instead of libgnomeprint
[xournal.git] / src / xo-print.c
1 #ifdef HAVE_CONFIG_H
2 #  include <config.h>
3 #endif
4
5 #define PANGO_ENABLE_BACKEND /* to access PangoFcFont.font_pattern */
6
7 #include <gtk/gtk.h>
8 #include <libgnomecanvas/libgnomecanvas.h>
9 #include <zlib.h>
10 #include <string.h>
11 #include <locale.h>
12 #include <pango/pango.h>
13 #include <pango/pangofc-font.h>
14 #include <pango/pangoft2.h>
15 #include <fontconfig/fontconfig.h>
16 #include <ft2build.h>
17 #include FT_FREETYPE_H
18
19 #define NO_MAPPERS
20 #define NO_TYPE3
21 #define NO_TYPE42
22 #include "ttsubset/sft.h"
23
24 #include "xournal.h"
25 #include "xo-support.h"
26 #include "xo-misc.h"
27 #include "xo-paint.h"
28 #include "xo-print.h"
29 #include "xo-file.h"
30
31 #define RGBA_RED(rgba) (((rgba>>24)&0xff)/255.0)
32 #define RGBA_GREEN(rgba) (((rgba>>16)&0xff)/255.0)
33 #define RGBA_BLUE(rgba) (((rgba>>8)&0xff)/255.0)
34 #define RGBA_ALPHA(rgba) (((rgba>>0)&0xff)/255.0)
35 #define RGBA_RGB(rgba) RGBA_RED(rgba), RGBA_GREEN(rgba), RGBA_BLUE(rgba)
36
37 /*********** Printing to PDF ************/
38
39 gboolean ispdfspace(char c)
40 {
41   return (c==0 || c==9 || c==10 || c==12 || c==13 || c==' ');
42 }
43
44 gboolean ispdfdelim(char c)
45 {
46   return (c=='(' || c==')' || c=='<' || c=='>' || c=='[' || c==']' ||
47           c=='{' || c=='}' || c=='/' || c=='%');
48 }
49
50 void skipspace(char **p, char *eof)
51 {
52   while (ispdfspace(**p) || **p=='%') {
53     if (**p=='%') while (*p!=eof && **p!=10 && **p!=13) (*p)++;
54     if (*p==eof) return;
55     (*p)++;
56   }
57 }
58
59 void free_pdfobj(struct PdfObj *obj)
60 {
61   int i;
62   
63   if (obj==NULL) return;
64   if ((obj->type == PDFTYPE_STRING || obj->type == PDFTYPE_NAME ||
65       obj->type == PDFTYPE_STREAM) && obj->str!=NULL)
66     g_free(obj->str);
67   if ((obj->type == PDFTYPE_ARRAY || obj->type == PDFTYPE_DICT ||
68       obj->type == PDFTYPE_STREAM) && obj->num>0) {
69     for (i=0; i<obj->num; i++)
70       free_pdfobj(obj->elts[i]);
71     g_free(obj->elts);
72   }
73   if ((obj->type == PDFTYPE_DICT || obj->type == PDFTYPE_STREAM) && obj->num>0) {
74     for (i=0; i<obj->num; i++)
75       g_free(obj->names[i]);
76     g_free(obj->names);
77   }
78   g_free(obj);
79 }
80
81 struct PdfObj *dup_pdfobj(struct PdfObj *obj)
82 {
83   struct PdfObj *dup;
84   int i;
85   
86   if (obj==NULL) return NULL;
87   dup = g_memdup(obj, sizeof(struct PdfObj));
88   if ((obj->type == PDFTYPE_STRING || obj->type == PDFTYPE_NAME ||
89       obj->type == PDFTYPE_STREAM) && obj->str!=NULL) {
90     if (obj->type == PDFTYPE_NAME) obj->len = strlen(obj->str);
91     dup->str = g_memdup(obj->str, obj->len+1);
92   }
93   if ((obj->type == PDFTYPE_ARRAY || obj->type == PDFTYPE_DICT ||
94       obj->type == PDFTYPE_STREAM) && obj->num>0) {
95     dup->elts = g_malloc(obj->num*sizeof(struct PdfObj *));
96     for (i=0; i<obj->num; i++)
97       dup->elts[i] = dup_pdfobj(obj->elts[i]);
98   }
99   if ((obj->type == PDFTYPE_DICT || obj->type == PDFTYPE_STREAM) && obj->num>0) {
100     dup->names = g_malloc(obj->num*sizeof(char *));
101     for (i=0; i<obj->num; i++)
102       dup->names[i] = g_strdup(obj->names[i]);
103   }
104   return dup;
105 }
106
107 void show_pdfobj(struct PdfObj *obj, GString *str)
108 {
109   int i;
110   if (obj==NULL) return;
111   switch(obj->type) {
112     case PDFTYPE_CST:
113       if (obj->intval==1) g_string_append(str, "true");
114       if (obj->intval==0) g_string_append(str, "false");
115       if (obj->intval==-1) g_string_append(str, "null");
116       break;
117     case PDFTYPE_INT:
118       g_string_append_printf(str, "%d", obj->intval);
119       break;
120     case PDFTYPE_REAL:
121       g_string_append_printf(str, "%f", obj->realval);
122       break;
123     case PDFTYPE_STRING:
124       g_string_append_len(str, obj->str, obj->len);
125       break;
126     case PDFTYPE_NAME:
127       g_string_append(str, obj->str);
128       break;
129     case PDFTYPE_ARRAY:
130       g_string_append_c(str, '[');
131       for (i=0;i<obj->num;i++) {
132         if (i) g_string_append_c(str, ' ');
133         show_pdfobj(obj->elts[i], str);
134       }
135       g_string_append_c(str, ']');
136       break;
137     case PDFTYPE_DICT:
138       g_string_append(str, "<<");
139       for (i=0;i<obj->num;i++) {
140         g_string_append_printf(str, " %s ", obj->names[i]); 
141         show_pdfobj(obj->elts[i], str);
142       }
143       g_string_append(str, " >>");
144       break;
145     case PDFTYPE_REF:
146       g_string_append_printf(str, "%d %d R", obj->intval, obj->num);
147       break;
148   }
149 }
150
151 void DEBUG_PRINTOBJ(struct PdfObj *obj)
152 {
153   GString *s = g_string_new("");
154   show_pdfobj(obj, s);
155   puts(s->str);
156   g_string_free(s, TRUE);
157 }
158
159 // parse a PDF object; returns NULL if fails
160 // THIS PARSER DOES NOT RECOGNIZE STREAMS YET
161
162 struct PdfObj *parse_pdf_object(char **ptr, char *eof)
163 {
164   struct PdfObj *obj, *elt;
165   char *p, *q, *r, *eltname;
166   int stack;
167
168   obj = g_malloc(sizeof(struct PdfObj));
169   p = *ptr;
170   skipspace(&p, eof);
171   if (p==eof) { g_free(obj); return NULL; }
172   
173   // maybe a constant
174   if (!strncmp(p, "true", 4)) {
175     obj->type = PDFTYPE_CST;
176     obj->intval = 1;
177     *ptr = p+4;
178     return obj;
179   }
180   if (!strncmp(p, "false", 5)) {
181     obj->type = PDFTYPE_CST;
182     obj->intval = 0;
183     *ptr = p+5;
184     return obj;
185   }
186   if (!strncmp(p, "null", 4)) {
187     obj->type = PDFTYPE_CST;
188     obj->intval = -1;
189     *ptr = p+4;
190     return obj;
191   }
192
193   // or a number ?
194   obj->intval = strtol(p, &q, 10);
195   *ptr = q;
196   if (q!=p) {
197     if (*q == '.') {
198       obj->type = PDFTYPE_REAL;
199       obj->realval = g_ascii_strtod(p, ptr);
200       return obj;
201     }
202     if (ispdfspace(*q)) {
203       // check for indirect reference
204       skipspace(&q, eof);
205       obj->num = strtol(q, &r, 10);
206       if (r!=q) {
207         skipspace(&r, eof);
208         if (*r=='R') {
209           *ptr = r+1;
210           obj->type = PDFTYPE_REF;
211           return obj;
212         }
213       }
214     }
215     obj->type = PDFTYPE_INT;
216     return obj;
217   }
218
219   // a string ?
220   if (*p=='(') {
221     q=p+1; stack=1;
222     while (stack>0 && q!=eof) {
223       if (*q=='(') stack++;
224       if (*q==')') stack--;
225       if (*q=='\\') q++;
226       if (q!=eof) q++;
227     }
228     if (q==eof) { g_free(obj); return NULL; }
229     obj->type = PDFTYPE_STRING;
230     obj->len = q-p;
231     obj->str = g_malloc(obj->len+1);
232     obj->str[obj->len] = 0;
233     g_memmove(obj->str, p, obj->len);
234     *ptr = q;
235     return obj;
236   }  
237   if (*p=='<' && p[1]!='<') {
238     q=p+1;
239     while (*q!='>' && q!=eof) q++;
240     if (q==eof) { g_free(obj); return NULL; }
241     q++;
242     obj->type = PDFTYPE_STRING;
243     obj->len = q-p;
244     obj->str = g_malloc(obj->len+1);
245     obj->str[obj->len] = 0;
246     g_memmove(obj->str, p, obj->len);
247     *ptr = q;
248     return obj;
249   }
250   
251   // a name ?
252   if (*p=='/') {
253     q=p+1;
254     while (!ispdfspace(*q) && !ispdfdelim(*q)) q++;
255     obj->type = PDFTYPE_NAME;
256     obj->str = g_strndup(p, q-p);
257     *ptr = q;
258     return obj;
259   }
260
261   // an array ?
262   if (*p=='[') {
263     obj->type = PDFTYPE_ARRAY;
264     obj->num = 0;
265     obj->elts = NULL;
266     q=p+1; skipspace(&q, eof);
267     while (*q!=']') {
268       elt = parse_pdf_object(&q, eof);
269       if (elt==NULL) { free_pdfobj(obj); return NULL; }
270       obj->num++;
271       obj->elts = g_realloc(obj->elts, obj->num*sizeof(struct PdfObj *));
272       obj->elts[obj->num-1] = elt;
273       skipspace(&q, eof);
274     }
275     *ptr = q+1;
276     return obj;
277   }
278
279   // a dictionary ?
280   if (*p=='<' && p[1]=='<') {
281     obj->type = PDFTYPE_DICT;
282     obj->num = 0;
283     obj->elts = NULL;
284     obj->names = NULL;
285     q=p+2; skipspace(&q, eof);
286     while (*q!='>' || q[1]!='>') {
287       if (*q!='/') { free_pdfobj(obj); return NULL; }
288       r=q+1;
289       while (!ispdfspace(*r) && !ispdfdelim(*r)) r++;
290       eltname = g_strndup(q, r-q);
291       q=r; skipspace(&q, eof);
292       elt = parse_pdf_object(&q, eof);
293       if (elt==NULL) { g_free(eltname); free_pdfobj(obj); return NULL; }
294       obj->num++;
295       obj->elts = g_realloc(obj->elts, obj->num*sizeof(struct PdfObj *));
296       obj->names = g_realloc(obj->names, obj->num*sizeof(char *));
297       obj->elts[obj->num-1] = elt;
298       obj->names[obj->num-1] = eltname;
299       skipspace(&q, eof);
300     }
301     *ptr = q+2;
302     return obj;
303   }
304
305   // DOES NOT RECOGNIZE STREAMS YET (handle as subcase of dictionary)
306   
307   g_free(obj);
308   return NULL;
309 }
310
311 struct PdfObj *get_dict_entry(struct PdfObj *dict, char *name)
312 {
313   int i;
314   
315   if (dict==NULL) return NULL;
316   if (dict->type != PDFTYPE_DICT) return NULL;
317   for (i=0; i<dict->num; i++) 
318     if (!strcmp(dict->names[i], name)) return dict->elts[i];
319   return NULL;
320 }
321
322 struct PdfObj *get_pdfobj(GString *pdfbuf, struct XrefTable *xref, struct PdfObj *obj)
323 {
324   char *p, *eof;
325   int offs, n;
326
327   if (obj==NULL) return NULL;
328   if (obj->type!=PDFTYPE_REF) return dup_pdfobj(obj);
329   if (obj->intval>xref->last) return NULL;
330   offs = xref->data[obj->intval];
331   if (offs<=0 || offs >= pdfbuf->len) return NULL;
332
333   p = pdfbuf->str + offs;
334   eof = pdfbuf->str + pdfbuf->len;
335   n = strtol(p, &p, 10);
336   if (n!=obj->intval) return NULL;
337   skipspace(&p, eof);
338   n = strtol(p, &p, 10);
339   skipspace(&p, eof);
340   if (strncmp(p, "obj", 3)) return NULL;
341   p+=3;
342   return parse_pdf_object(&p, eof);
343 }
344
345 // read the xref table of a PDF file in memory, and return the trailerdict
346
347 struct PdfObj *parse_xref_table(GString *pdfbuf, struct XrefTable *xref, int offs)
348 {
349   char *p, *eof;
350   struct PdfObj *trailerdict, *obj;
351   int start, len, i;
352   
353   if (strncmp(pdfbuf->str+offs, "xref", 4)) return NULL;
354   p = strstr(pdfbuf->str+offs, "trailer");
355   eof = pdfbuf->str + pdfbuf->len;
356   if (p==NULL) return NULL;
357   p+=8;
358   trailerdict = parse_pdf_object(&p, eof);
359   obj = get_dict_entry(trailerdict, "/Size");
360   if (obj!=NULL && obj->type == PDFTYPE_INT && obj->intval-1>xref->last)
361     make_xref(xref, obj->intval-1, 0);
362   obj = get_dict_entry(trailerdict, "/Prev");
363   if (obj!=NULL && obj->type == PDFTYPE_INT && obj->intval>0 && obj->intval!=offs) {
364     // recurse into older xref table
365     obj = parse_xref_table(pdfbuf, xref, obj->intval);
366     free_pdfobj(obj);
367   }
368   p = pdfbuf->str+offs+4;
369   skipspace(&p, eof);
370   if (*p<'0' || *p>'9') { free_pdfobj(trailerdict); return NULL; }
371   while (*p>='0' && *p<='9') {
372     start = strtol(p, &p, 10);
373     skipspace(&p, eof);
374     len = strtol(p, &p, 10);
375     skipspace(&p, eof);
376     if (len <= 0 || 20*len > eof-p) break;
377     if (start+len-1 > xref->last) make_xref(xref, start+len-1, 0);
378     for (i=start; i<start+len; i++) {
379       xref->data[i] = strtol(p, NULL, 10);
380       p+=20;
381     }
382     skipspace(&p, eof);
383   }
384   if (*p!='t') { free_pdfobj(trailerdict); return NULL; }
385   return trailerdict;
386 }
387
388 // parse the page tree
389
390 int pdf_getpageinfo(GString *pdfbuf, struct XrefTable *xref, 
391                 struct PdfObj *pgtree, int nmax, struct PdfPageDesc *pages)
392 {
393   struct PdfObj *obj, *kid;
394   int i, count, j;
395   
396   obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/Type"));
397   if (obj == NULL || obj->type != PDFTYPE_NAME)
398     return 0;
399   if (!strcmp(obj->str, "/Page")) {
400     free_pdfobj(obj);
401     pages->contents = dup_pdfobj(get_dict_entry(pgtree, "/Contents"));
402     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/Resources"));
403     if (obj!=NULL) {
404       free_pdfobj(pages->resources);
405       pages->resources = obj;
406     }
407     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/MediaBox"));
408     if (obj!=NULL) {
409       free_pdfobj(pages->mediabox);
410       pages->mediabox = obj;
411     }
412     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/Rotate"));
413     if (obj!=NULL && obj->type == PDFTYPE_INT)
414       pages->rotate = obj->intval;
415     free_pdfobj(obj);
416     return 1;
417   }
418   else if (!strcmp(obj->str, "/Pages")) {
419     free_pdfobj(obj);
420     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/Count"));
421     if (obj!=NULL && obj->type == PDFTYPE_INT && 
422         obj->intval>0 && obj->intval<=nmax) count = obj->intval;
423     else count = 0;
424     free_pdfobj(obj);
425     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/Resources"));
426     if (obj!=NULL)
427       for (i=0; i<count; i++) {
428         free_pdfobj(pages[i].resources);
429         pages[i].resources = dup_pdfobj(obj);
430       }
431     free_pdfobj(obj);
432     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/MediaBox"));
433     if (obj!=NULL)
434       for (i=0; i<count; i++) {
435         free_pdfobj(pages[i].mediabox);
436         pages[i].mediabox = dup_pdfobj(obj);
437       }
438     free_pdfobj(obj);
439     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/Rotate"));
440     if (obj!=NULL && obj->type == PDFTYPE_INT)
441       for (i=0; i<count; i++)
442         pages[i].rotate = obj->intval;
443     free_pdfobj(obj);
444     obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pgtree, "/Kids"));
445     if (obj!=NULL && obj->type == PDFTYPE_ARRAY) {
446       for (i=0; i<obj->num; i++) {
447         kid = get_pdfobj(pdfbuf, xref, obj->elts[i]);
448         if (kid!=NULL) {
449           j = pdf_getpageinfo(pdfbuf, xref, kid, nmax, pages);
450           nmax -= j;
451           pages += j;
452           free_pdfobj(kid);
453         }
454       }
455     }
456     free_pdfobj(obj);
457     return count;
458   }
459   return 0;
460 }
461
462 // parse a PDF file in memory
463
464 gboolean pdf_parse_info(GString *pdfbuf, struct PdfInfo *pdfinfo, struct XrefTable *xref)
465 {
466   char *p;
467   int offs;
468   struct PdfObj *obj, *pages;
469
470   xref->n_alloc = xref->last = 0;
471   xref->data = NULL;
472   p = pdfbuf->str + pdfbuf->len-1;
473   
474   while (*p!='s' && p!=pdfbuf->str) p--;
475   if (strncmp(p, "startxref", 9)) return FALSE; // fail
476   p+=9;
477   while (ispdfspace(*p) && p!=pdfbuf->str+pdfbuf->len) p++;
478   offs = strtol(p, NULL, 10);
479   if (offs <= 0 || offs > pdfbuf->len) return FALSE; // fail
480   pdfinfo->startxref = offs;
481   
482   pdfinfo->trailerdict = parse_xref_table(pdfbuf, xref, offs);
483   if (pdfinfo->trailerdict == NULL) return FALSE; // fail
484   
485   obj = get_pdfobj(pdfbuf, xref,
486      get_dict_entry(pdfinfo->trailerdict, "/Root"));
487   if (obj == NULL)
488     { free_pdfobj(pdfinfo->trailerdict); return FALSE; }
489   pages = get_pdfobj(pdfbuf, xref, get_dict_entry(obj, "/Pages"));
490   free_pdfobj(obj);
491   if (pages == NULL)
492     { free_pdfobj(pdfinfo->trailerdict); return FALSE; }
493   obj = get_pdfobj(pdfbuf, xref, get_dict_entry(pages, "/Count"));
494   if (obj == NULL || obj->type != PDFTYPE_INT || obj->intval<=0) 
495     { free_pdfobj(pdfinfo->trailerdict); free_pdfobj(pages); 
496       free_pdfobj(obj); return FALSE; }
497   pdfinfo->npages = obj->intval;
498   free_pdfobj(obj);
499   
500   pdfinfo->pages = g_malloc0(pdfinfo->npages*sizeof(struct PdfPageDesc));
501   pdf_getpageinfo(pdfbuf, xref, pages, pdfinfo->npages, pdfinfo->pages);
502   free_pdfobj(pages);
503   
504   return TRUE;
505 }
506
507 // add an entry to the xref table
508
509 void make_xref(struct XrefTable *xref, int nobj, int offset)
510 {
511   if (xref->n_alloc <= nobj) {
512     xref->n_alloc = nobj + 10;
513     xref->data = g_realloc(xref->data, xref->n_alloc*sizeof(int));
514   }
515   if (xref->last < nobj) xref->last = nobj;
516   xref->data[nobj] = offset;
517 }
518
519 // a wrapper for deflate
520
521 GString *do_deflate(char *in, int len)
522 {
523   GString *out;
524   z_stream zs;
525   
526   zs.zalloc = Z_NULL;
527   zs.zfree = Z_NULL;
528   deflateInit(&zs, Z_DEFAULT_COMPRESSION);
529   zs.next_in = (Bytef *)in;
530   zs.avail_in = len;
531   zs.avail_out = deflateBound(&zs, len);
532   out = g_string_sized_new(zs.avail_out);
533   zs.next_out = (Bytef *)out->str;
534   deflate(&zs, Z_FINISH);
535   out->len = zs.total_out;
536   deflateEnd(&zs);
537   return out;
538 }
539
540 // prefix to scale the original page
541
542 GString *make_pdfprefix(struct PdfPageDesc *pgdesc, double width, double height)
543 {
544   GString *str;
545   double v[4], t, xscl, yscl;
546   int i;
547
548   // push 3 times in case code to be annotated has unbalanced q/Q (B of A., ...)
549   str = g_string_new("q q q "); 
550   if (pgdesc->rotate == 90) {
551     g_string_append_printf(str, "0 -1 1 0 0 %.2f cm ", height);
552     t = height; height = width; width = t;
553   }
554   if (pgdesc->rotate == 270) {
555     g_string_append_printf(str, "0 1 -1 0 %.2f 0 cm ", width);
556     t = height; height = width; width = t;
557   }
558   if (pgdesc->rotate == 180) {
559     g_string_append_printf(str, "-1 0 0 -1 %.2f %.2f cm ", width, height);
560   }
561   if (pgdesc->mediabox==NULL || pgdesc->mediabox->type != PDFTYPE_ARRAY ||
562       pgdesc->mediabox->num != 4) return str;
563   for (i=0; i<4; i++) {
564     if (pgdesc->mediabox->elts[i]->type == PDFTYPE_INT)
565       v[i] = pgdesc->mediabox->elts[i]->intval;
566     else if (pgdesc->mediabox->elts[i]->type == PDFTYPE_REAL)
567       v[i] = pgdesc->mediabox->elts[i]->realval;
568     else return str;
569   }
570   if (v[0]>v[2]) { t = v[0]; v[0] = v[2]; v[2] = t; }
571   if (v[1]>v[3]) { t = v[1]; v[1] = v[3]; v[3] = t; }
572   if (v[2]-v[0] < 1. || v[3]-v[1] < 1.) return str;
573   xscl = width/(v[2]-v[0]);
574   yscl = height/(v[3]-v[1]);
575   g_string_append_printf(str, "%.4f 0 0 %.4f %.2f %.2f cm ",
576     xscl, yscl, -v[0]*xscl, -v[1]*yscl);
577   return str;
578 }
579
580 // add an entry to a subentry of a directory
581
582 struct PdfObj *mk_pdfname(char *name)
583 {
584   struct PdfObj *obj;
585   
586   obj = g_malloc(sizeof(struct PdfObj));
587   obj->type = PDFTYPE_NAME;
588   obj->str = g_strdup(name);
589   return obj;
590 }
591
592 struct PdfObj *mk_pdfref(int num)
593 {
594   struct PdfObj *obj;
595   
596   obj = g_malloc(sizeof(struct PdfObj));
597   obj->type = PDFTYPE_REF;
598   obj->intval = num;
599   obj->num = 0;
600   return obj;
601 }
602
603 gboolean iseq_obj(struct PdfObj *a, struct PdfObj *b)
604 {
605   if (a==NULL || b==NULL) return (a==b);
606   if (a->type!=b->type) return FALSE;
607   if (a->type == PDFTYPE_CST || a->type == PDFTYPE_INT)
608     return (a->intval == b->intval);
609   if (a->type == PDFTYPE_REAL)
610     return (a->realval == b->realval);
611   if (a->type == PDFTYPE_NAME)
612     return !strcmp(a->str, b->str);
613   if (a->type == PDFTYPE_REF)
614     return (a->intval == b->intval && a->num == b->num);
615   return FALSE;
616 }
617
618 void add_dict_subentry(GString *pdfbuf, struct XrefTable *xref,
619    struct PdfObj *obj, char *section, int type, char *name, struct PdfObj *entry)
620 {
621   struct PdfObj *sec;
622   int i, subpos;
623   
624   subpos = -1;
625   for (i=0; i<obj->num; i++) 
626     if (!strcmp(obj->names[i], section)) subpos = i;
627   if (subpos == -1) {
628     subpos = obj->num;
629     obj->num++;
630     obj->elts = g_realloc(obj->elts, obj->num*sizeof(struct PdfObj*));
631     obj->names = g_realloc(obj->names, obj->num*sizeof(char *));
632     obj->names[subpos] = g_strdup(section);
633     obj->elts[subpos] = NULL;
634   }
635   if (obj->elts[subpos]!=NULL && obj->elts[subpos]->type==PDFTYPE_REF) {
636     sec = get_pdfobj(pdfbuf, xref, obj->elts[subpos]);
637     free_pdfobj(obj->elts[subpos]);
638     obj->elts[subpos] = sec;
639   }
640   if (obj->elts[subpos]!=NULL && obj->elts[subpos]->type!=type)
641     { free_pdfobj(obj->elts[subpos]); obj->elts[subpos] = NULL; }
642   if (obj->elts[subpos] == NULL) {
643     obj->elts[subpos] = sec = g_malloc(sizeof(struct PdfObj));
644     sec->type = type;
645     sec->num = 0;
646     sec->elts = NULL;
647     sec->names = NULL;
648   }
649   sec = obj->elts[subpos];
650
651   subpos = -1;
652   if (type==PDFTYPE_DICT) {
653     for (i=0; i<sec->num; i++) 
654       if (!strcmp(sec->names[i], name)) subpos = i;
655     if (subpos == -1) {
656       subpos = sec->num;
657       sec->num++;
658       sec->elts = g_realloc(sec->elts, sec->num*sizeof(struct PdfObj*));
659       sec->names = g_realloc(sec->names, sec->num*sizeof(char *));
660       sec->names[subpos] = g_strdup(name);
661       sec->elts[subpos] = NULL;
662     }
663     free_pdfobj(sec->elts[subpos]);
664     sec->elts[subpos] = entry;
665   } 
666   if (type==PDFTYPE_ARRAY) {
667     for (i=0; i<sec->num; i++)
668       if (iseq_obj(sec->elts[i], entry)) subpos = i;
669     if (subpos == -1) {
670       subpos = sec->num;
671       sec->num++;
672       sec->elts = g_realloc(sec->elts, sec->num*sizeof(struct PdfObj*));
673       sec->elts[subpos] = entry;
674     }
675     else free_pdfobj(entry);
676   }
677 }
678
679 // draw a page's background
680
681 void pdf_draw_solid_background(struct Page *pg, GString *str)
682 {
683   double x, y;
684
685   g_string_append_printf(str, 
686     "%.2f %.2f %.2f rg 0 0 %.2f %.2f re f ",
687     RGBA_RGB(pg->bg->color_rgba), pg->width, pg->height);
688   if (!ui.print_ruling) return;
689   if (pg->bg->ruling == RULING_NONE) return;
690   g_string_append_printf(str,
691     "%.2f %.2f %.2f RG %.2f w ",
692     RGBA_RGB(RULING_COLOR), RULING_THICKNESS);
693   if (pg->bg->ruling == RULING_GRAPH) {
694     for (x=RULING_GRAPHSPACING; x<pg->width-1; x+=RULING_GRAPHSPACING)
695       g_string_append_printf(str, "%.2f 0 m %.2f %.2f l S ",
696         x, x, pg->height);
697     for (y=RULING_GRAPHSPACING; y<pg->height-1; y+=RULING_GRAPHSPACING)
698       g_string_append_printf(str, "0 %.2f m %.2f %.2f l S ",
699         y, pg->width, y);
700     return;
701   }
702   for (y=RULING_TOPMARGIN; y<pg->height-1; y+=RULING_SPACING)
703     g_string_append_printf(str, "0 %.2f m %.2f %.2f l S ",
704       y, pg->width, y);
705   if (pg->bg->ruling == RULING_LINED)
706     g_string_append_printf(str, 
707       "%.2f %.2f %.2f RG %.2f 0 m %.2f %.2f l S ",
708       RGBA_RGB(RULING_MARGIN_COLOR), 
709       RULING_LEFTMARGIN, RULING_LEFTMARGIN, pg->height);
710 }
711
712 int pdf_draw_bitmap_background(struct Page *pg, GString *str, 
713                                 struct XrefTable *xref, GString *pdfbuf)
714 {
715   BgPdfPage *pgpdf;
716   GdkPixbuf *pix;
717   GString *zpix;
718   PopplerPage *pdfpage;
719   char *buf, *p1, *p2;
720   int height, width, stride, x, y, chan;
721   double pgheight, pgwidth;
722   
723   if (pg->bg->type == BG_PDF) {
724     if (!bgpdf.document) return -1;
725     pdfpage = poppler_document_get_page(bgpdf.document, pg->bg->file_page_seq-1);
726     if (!pdfpage) return -1;
727     poppler_page_get_size(pdfpage, &pgwidth, &pgheight);
728     width = (int) (PDFTOPPM_PRINTING_DPI * pgwidth/72.0);
729     height = (int) (PDFTOPPM_PRINTING_DPI * pgheight/72.0);
730     pix = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, width, height);
731     poppler_page_render_to_pixbuf(
732        pdfpage, 0, 0, width, height, PDFTOPPM_PRINTING_DPI/72.0, 0, pix);
733     g_object_unref(pdfpage);
734   }
735   else pix = g_object_ref(pg->bg->pixbuf);
736   
737   if (gdk_pixbuf_get_bits_per_sample(pix) != 8 ||
738       gdk_pixbuf_get_colorspace(pix) != GDK_COLORSPACE_RGB)
739     { g_object_unref(pix); return -1; }
740                     
741   width = gdk_pixbuf_get_width(pix);
742   height = gdk_pixbuf_get_height(pix);
743   stride = gdk_pixbuf_get_rowstride(pix);
744   chan = gdk_pixbuf_get_n_channels(pix);
745   if (chan!=3 && chan!=4) { g_object_unref(pix); return -1; }
746
747   g_string_append_printf(str, "q %.2f 0 0 %.2f 0 %.2f cm /ImBg Do Q ",
748     pg->width, -pg->height, pg->height);
749   
750   p2 = buf = (char *)g_malloc(3*width*height);
751   for (y=0; y<height; y++) {
752     p1 = (char *)gdk_pixbuf_get_pixels(pix)+stride*y;
753     for (x=0; x<width; x++) {
754       *(p2++)=*(p1++); *(p2++)=*(p1++); *(p2++)=*(p1++);
755       if (chan==4) p1++;
756     }
757   }
758   zpix = do_deflate(buf, 3*width*height);
759   g_free(buf);
760   g_object_unref(pix);
761
762   make_xref(xref, xref->last+1, pdfbuf->len);
763   g_string_append_printf(pdfbuf, 
764     "%d 0 obj\n<< /Length %d /Filter /FlateDecode /Type /Xobject "
765     "/Subtype /Image /Width %d /Height %d /ColorSpace /DeviceRGB "
766     "/BitsPerComponent 8 >> stream\n",
767     xref->last, zpix->len, width, height);
768   g_string_append_len(pdfbuf, zpix->str, zpix->len);
769   g_string_free(zpix, TRUE);
770   g_string_append(pdfbuf, "endstream\nendobj\n");
771  
772   return xref->last;
773 }
774
775 // manipulate Pdf fonts
776
777 struct PdfFont *new_pdffont(struct XrefTable *xref, GList **fonts,
778    char *filename, int font_id, FT_Face face, int glyph_page)
779 {
780   GList *list;
781   struct PdfFont *font;
782   int i;
783   const char *s;
784   
785   for (list = *fonts; list!=NULL; list = list->next) {
786     font = (struct PdfFont *)list->data;
787     if (!strcmp(font->filename, filename) && font->font_id == font_id 
788         && font->glyph_page == glyph_page)
789           { font->used_in_this_page = TRUE; return font; }
790   }
791   font = g_malloc(sizeof(struct PdfFont));
792   *fonts = g_list_append(*fonts, font);
793   font->n_obj = xref->last+1;
794   make_xref(xref, xref->last+1, 0); // will give it a value later
795   font->filename = g_strdup(filename);
796   font->font_id = font_id;
797   font->glyph_page = glyph_page;
798   font->used_in_this_page = TRUE;
799   font->num_glyphs_used = 0;
800   for (i=0; i<256; i++) {
801     font->glyphmap[i] = -1;
802     font->advance[i] = 0;
803     font->glyphpsnames[i] = NULL;
804   }
805   font->glyphmap[0] = 0;
806   // fill in info from the FT_Face
807   font->is_truetype = FT_IS_SFNT(face);
808   font->nglyphs = face->num_glyphs;
809   font->ft2ps = 1000.0 / face->units_per_EM;
810   font->ascender = (int)(font->ft2ps*face->ascender);
811   font->descender = (int)(font->ft2ps*face->descender);
812   if (face->bbox.xMin < -100000 || face->bbox.xMin > 100000) font->xmin = 0;
813   else font->xmin = (int)(font->ft2ps*face->bbox.xMin);
814   if (face->bbox.xMax < -100000 || face->bbox.xMax > 100000) font->xmax = 0;
815   else font->xmax = (int)(font->ft2ps*face->bbox.xMax);
816   if (face->bbox.yMin < -100000 || face->bbox.yMin > 100000) font->ymin = 0;
817   else font->ymin = (int)(font->ft2ps*face->bbox.yMin);
818   if (face->bbox.yMax < -100000 || face->bbox.yMax > 100000) font->ymax = 0;
819   else font->ymax = (int)(font->ft2ps*face->bbox.yMax);
820   if (font->is_truetype) font->flags = 4; // symbolic
821   else {
822     font->flags = 4; // symbolic
823     if (FT_IS_FIXED_WIDTH(face)) font->flags |= 1;
824     if (face->style_flags & FT_STYLE_FLAG_ITALIC) font->flags |= 64;
825   }
826   s = FT_Get_Postscript_Name(face);
827   if (s==NULL) s = "Noname";
828   if (glyph_page) font->fontname = g_strdup_printf("%s_%03d", s, glyph_page);
829   else font->fontname = g_strdup(s);
830   return font;
831 }
832
833 #define pfb_get_length(x) (((x)[3]<<24) + ((x)[2]<<16) + ((x)[1]<<8) + (x)[0])
834 #define T1_SEGMENT_1_END "currentfile eexec"
835 #define T1_SEGMENT_3_END "cleartomark"
836
837 void embed_pdffont(GString *pdfbuf, struct XrefTable *xref, struct PdfFont *font)
838 {
839   // this code inspired by libgnomeprint
840   gboolean fallback, is_binary;
841   guchar encoding[256];
842   gushort glyphs[256];
843   int i, j, num, len1, len2;
844   gsize len;
845   TrueTypeFont *ttfnt;
846   char *seg1, *seg2;
847   char *fontdata, *p;
848   char prefix[8];
849   int nobj_fontprog, nobj_descr, lastchar;
850   
851   fallback = FALSE;
852   // embed the font file: TrueType case
853   if (font->is_truetype) {
854     glyphs[0] = encoding[0] = 0;
855     num = 1;
856     for (i=1; i<=255; i++) 
857       if (font->glyphmap[i]>=0) {
858         font->glyphmap[i] = num;
859         glyphs[num] = 255*font->glyph_page+i-1;
860         encoding[num] = i;
861         num++;
862       }
863     font->num_glyphs_used = num-1;
864     if (OpenTTFont(font->filename, 0, &ttfnt) == SF_OK) {
865       if (CreateTTFromTTGlyphs_tomemory(ttfnt, (guint8**)&fontdata, &len, glyphs, encoding, num, 
866                    0, NULL, TTCF_AutoName | TTCF_IncludeOS2) == SF_OK) {
867         make_xref(xref, xref->last+1, pdfbuf->len);
868         nobj_fontprog = xref->last;
869         g_string_append_printf(pdfbuf, 
870           "%d 0 obj\n<< /Length %d /Length1 %d >> stream\n",
871           nobj_fontprog, (int)len, (int)len);
872         g_string_append_len(pdfbuf, fontdata, len);
873         g_string_append(pdfbuf, "endstream\nendobj\n");
874         g_free(fontdata);
875       }
876       else fallback = TRUE;
877       CloseTTFont(ttfnt);
878     } 
879     else fallback = TRUE;
880   } else {
881   // embed the font file: Type1 case
882     if (g_file_get_contents(font->filename, &fontdata, &len, NULL) && len>=8) {
883       if (fontdata[0]==(char)0x80 && fontdata[1]==(char)0x01) {
884         is_binary = TRUE;
885         len1 = pfb_get_length((unsigned char *)fontdata+2);
886         if (fontdata[len1+6]!=(char)0x80 || fontdata[len1+7]!=(char)0x02) fallback = TRUE;
887         else {
888           len2 = pfb_get_length((unsigned char *)fontdata+len1+8);
889           if (fontdata[len1+len2+12]!=(char)0x80 || fontdata[len1+len2+13]!=(char)0x01)
890             fallback = TRUE;
891         }
892       }
893       else if (!strncmp(fontdata, "%!PS", 4)) {
894         is_binary = FALSE;
895         p = strstr(fontdata, T1_SEGMENT_1_END) + strlen(T1_SEGMENT_1_END);
896         if (p==NULL) fallback = TRUE;
897         else {
898           if (*p=='\n' || *p=='\r') p++;
899           if (*p=='\n' || *p=='\r') p++;
900           len1 = p-fontdata;
901           p = g_strrstr_len(fontdata, len, T1_SEGMENT_3_END);
902           if (p==NULL) fallback = TRUE;
903           else {
904             // rewind 512 zeros
905             i = 512; p--;
906             while (i>0 && p!=fontdata && (*p=='0' || *p=='\r' || *p=='\n')) {
907               if (*p=='0') i--;
908               p--;
909             }
910             while (p!=fontdata && (*p=='\r' || *p=='\n')) p--;
911             p++;
912             if (i>0) fallback = TRUE;
913             else len2 = p-fontdata-len1;
914           }
915         }
916       }
917       else fallback = TRUE;
918       if (!fallback) {
919         if (is_binary) {
920           seg1 = fontdata+6;
921           seg2 = fontdata + len1 + 12;
922         } else {
923           seg1 = fontdata;
924           seg2 = g_malloc(len2/2);
925           j=0;
926           p = fontdata+len1;
927           while (p+1 < fontdata+len1+len2) {
928             if (*p==' '||*p=='\t'||*p=='\n'||*p=='\r') { p++; continue; }
929             if (p[0]>'9') { p[0]|=0x20; p[0]-=39; }
930             if (p[1]>'9') { p[1]|=0x20; p[1]-=39; }
931             seg2[j++] = ((p[0]-'0')<<4) + (p[1]-'0');
932             p+=2;
933           }
934           len2 = j;
935         }
936         make_xref(xref, xref->last+1, pdfbuf->len);
937         nobj_fontprog = xref->last;
938         g_string_append_printf(pdfbuf, 
939           "%d 0 obj\n<< /Length %d /Length1 %d /Length2 %d /Length3 0 >> stream\n",
940           nobj_fontprog, len1+len2, len1, len2);
941         g_string_append_len(pdfbuf, seg1, len1);
942         g_string_append_len(pdfbuf, seg2, len2);
943         g_string_append(pdfbuf, "endstream\nendobj\n");
944         if (!is_binary) g_free(seg2);
945       }
946       g_free(fontdata);
947     }
948     else fallback = TRUE;
949   }
950   
951   // next, the font descriptor
952   if (!fallback) {
953     make_xref(xref, xref->last+1, pdfbuf->len);
954     nobj_descr = xref->last;
955     g_string_append_printf(pdfbuf,
956       "%d 0 obj\n<< /Type /FontDescriptor /FontName /%s /Flags %d "
957       "/FontBBox [%d %d %d %d] /ItalicAngle 0 /Ascent %d "
958       "/Descent %d /CapHeight %d /StemV 100 /%s %d 0 R >> endobj\n",
959       nobj_descr, font->fontname, font->flags, 
960       font->xmin, font->ymin, font->xmax, font->ymax, 
961       font->ascender, -font->descender, font->ascender, 
962       font->is_truetype ? "FontFile2":"FontFile",
963       nobj_fontprog);
964   }
965   
966   // finally, the font itself
967   /* Note: in Type1 case, font->glyphmap maps charcodes to glyph no's
968      in TrueType case, encoding lists the used charcodes by index,
969                        glyphs   list the used glyph no's by index
970                        font->glyphmap maps charcodes to indices        */
971   xref->data[font->n_obj] = pdfbuf->len;
972   if (font->is_truetype) lastchar = encoding[font->num_glyphs_used];
973   else lastchar = font->num_glyphs_used;
974   if (fallback) {
975     font->is_truetype = FALSE;
976     g_free(font->fontname);
977     font->fontname = g_strdup("Helvetica");
978   }
979   prefix[0]=0;
980   if (font->is_truetype) {
981     num = font->glyph_page;
982     for (i=0; i<6; i++) { prefix[i] = 'A'+(num%26); num/=26; }
983     prefix[6]='+'; prefix[7]=0;
984   }
985   g_string_append_printf(pdfbuf,
986     "%d 0 obj\n<< /Type /Font /Subtype /%s /BaseFont /%s%s /Name /F%d ",
987     font->n_obj, font->is_truetype?"TrueType":"Type1",
988     prefix, font->fontname, font->n_obj);
989   if (!fallback) {
990     g_string_append_printf(pdfbuf,
991       "/FontDescriptor %d 0 R /FirstChar 0 /LastChar %d /Widths [",
992       nobj_descr, lastchar);
993     for (i=0; i<=lastchar; i++)
994       g_string_append_printf(pdfbuf, "%d ", font->advance[i]);
995     g_string_append(pdfbuf, "] ");
996   }
997   if (!font->is_truetype) { /* encoding */
998     g_string_append(pdfbuf, "/Encoding << /Type /Encoding "
999       "/BaseEncoding /MacRomanEncoding /Differences [1 ");
1000     for (i=1; i<=lastchar; i++) {
1001       g_string_append_printf(pdfbuf, "/%s ", font->glyphpsnames[i]);
1002       g_free(font->glyphpsnames[i]);
1003     }
1004     g_string_append(pdfbuf, "] >> ");
1005   }
1006   g_string_append(pdfbuf, ">> endobj\n");
1007 }
1008
1009 // draw a page's graphics
1010
1011 void pdf_draw_page(struct Page *pg, GString *str, gboolean *use_hiliter, 
1012                   struct XrefTable *xref, GList **pdffonts)
1013 {
1014   GList *layerlist, *itemlist, *tmplist;
1015   struct Layer *l;
1016   struct Item *item;
1017   guint old_rgba, old_text_rgba;
1018   double old_thickness;
1019   double *pt;
1020   int i, j;
1021   PangoFontDescription *font_desc;
1022   PangoContext *context;
1023   PangoLayout *layout;
1024   PangoLayoutIter *iter;
1025   PangoRectangle logical_rect;
1026   PangoLayoutRun *run;
1027   PangoFcFont *fcfont;
1028   PangoFontMap *fontmap;
1029   FcPattern *pattern;
1030   int baseline, advance;
1031   int glyph_no, glyph_page, current_page;
1032   char *filename;
1033   char tmpstr[200];
1034   int font_id;
1035   FT_Face ftface;
1036   struct PdfFont *cur_font;
1037   gboolean in_string;
1038   
1039   old_rgba = old_text_rgba = 0x12345678;    // not any values we use, so we'll reset them
1040   old_thickness = 0.0;
1041   for (tmplist = *pdffonts; tmplist!=NULL; tmplist = tmplist->next) {
1042     cur_font = (struct PdfFont *)tmplist->data;
1043     cur_font->used_in_this_page = FALSE;
1044   }
1045
1046   for (layerlist = pg->layers; layerlist!=NULL; layerlist = layerlist->next) {
1047     l = (struct Layer *)layerlist->data;
1048     for (itemlist = l->items; itemlist!=NULL; itemlist = itemlist->next) {
1049       item = (struct Item *)itemlist->data;
1050       if (item->type == ITEM_STROKE) {
1051         if ((item->brush.color_rgba & ~0xff) != old_rgba)
1052           g_string_append_printf(str, "%.2f %.2f %.2f RG ",
1053             RGBA_RGB(item->brush.color_rgba));
1054         if (item->brush.thickness != old_thickness)
1055           g_string_append_printf(str, "%.2f w ", item->brush.thickness);
1056         if ((item->brush.color_rgba & 0xf0) != 0xf0) { // transparent
1057           g_string_append(str, "q /XoHi gs ");
1058           *use_hiliter = TRUE;
1059         }
1060         old_rgba = item->brush.color_rgba & ~0xff;
1061         old_thickness = item->brush.thickness;
1062         pt = item->path->coords;
1063         if (!item->brush.variable_width) {
1064           g_string_append_printf(str, "%.2f %.2f m ", pt[0], pt[1]);
1065           for (i=1, pt+=2; i<item->path->num_points; i++, pt+=2)
1066             g_string_append_printf(str, "%.2f %.2f l ", pt[0], pt[1]);
1067           g_string_append_printf(str,"S\n");
1068           old_thickness = item->brush.thickness;
1069         } else {
1070           for (i=0; i<item->path->num_points-1; i++, pt+=2)
1071             g_string_append_printf(str, "%.2f w %.2f %.2f m %.2f %.2f l S\n", 
1072                item->widths[i], pt[0], pt[1], pt[2], pt[3]);
1073           old_thickness = 0.0;
1074         }
1075         if ((item->brush.color_rgba & 0xf0) != 0xf0) // undo transparent
1076           g_string_append(str, "Q ");
1077       }
1078       else if (item->type == ITEM_TEXT) {
1079         if ((item->brush.color_rgba & ~0xff) != old_text_rgba)
1080           g_string_append_printf(str, "%.2f %.2f %.2f rg ",
1081             RGBA_RGB(item->brush.color_rgba));
1082         old_text_rgba = item->brush.color_rgba & ~0xff;
1083         fontmap = pango_ft2_font_map_new();
1084         pango_ft2_font_map_set_resolution(PANGO_FT2_FONT_MAP (fontmap), 72, 72);
1085         context = pango_font_map_create_context(fontmap);
1086         layout = pango_layout_new(context);
1087         g_object_unref(fontmap);
1088         g_object_unref(context);
1089         font_desc = pango_font_description_from_string(item->font_name);
1090         pango_font_description_set_absolute_size(font_desc,
1091           item->font_size*PANGO_SCALE);
1092         pango_layout_set_font_description(layout, font_desc);
1093         pango_font_description_free(font_desc);
1094         pango_layout_set_text(layout, item->text, -1);
1095         // this code inspired by the code in libgnomeprint
1096         iter = pango_layout_get_iter(layout);
1097         do {
1098           run = pango_layout_iter_get_run(iter);
1099           if (run==NULL) continue;
1100           pango_layout_iter_get_run_extents (iter, NULL, &logical_rect);
1101           baseline = pango_layout_iter_get_baseline (iter);
1102           if (!PANGO_IS_FC_FONT(run->item->analysis.font)) continue;
1103           fcfont = PANGO_FC_FONT(run->item->analysis.font);
1104           pattern = fcfont->font_pattern;
1105           if (FcPatternGetString(pattern, FC_FILE, 0, (unsigned char **)&filename) != FcResultMatch ||
1106               FcPatternGetInteger(pattern, FC_INDEX, 0, &font_id) != FcResultMatch)
1107                 continue;
1108           ftface = pango_fc_font_lock_face(fcfont);
1109           current_page = -1;
1110           cur_font = NULL;
1111           g_string_append_printf(str, "BT %.2f 0 0 %.2f %.2f %.2f Tm ",
1112             item->font_size, -item->font_size,
1113             item->bbox.left + (gdouble) logical_rect.x/PANGO_SCALE,
1114             item->bbox.top + (gdouble) baseline/PANGO_SCALE);
1115           in_string = FALSE;
1116           for (i=0; i<run->glyphs->num_glyphs; i++) {
1117             glyph_no = run->glyphs->glyphs[i].glyph;
1118             if (FT_IS_SFNT(ftface)) glyph_page = glyph_no/255;
1119             else glyph_page = 0;
1120             if (glyph_page != current_page) {
1121               cur_font = new_pdffont(xref, pdffonts, filename, font_id,
1122                  ftface, glyph_page);
1123               if (in_string) g_string_append(str, ") Tj ");
1124               in_string = FALSE;
1125               g_string_append_printf(str, "/F%d 1 Tf ", cur_font->n_obj);
1126             }
1127             current_page = glyph_page;
1128             FT_Load_Glyph(ftface, glyph_no, FT_LOAD_NO_SCALE | FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP | FT_LOAD_IGNORE_TRANSFORM);
1129             advance = (int)(ftface->glyph->metrics.horiAdvance * cur_font->ft2ps + 0.5);
1130             if (!in_string) g_string_append_c(str, '(');
1131             in_string = TRUE;
1132             if (cur_font->is_truetype) {
1133               if (glyph_no) glyph_no = (glyph_no%255)+1;
1134               cur_font->glyphmap[glyph_no] = glyph_no;
1135             }
1136             else {
1137               for (j=1; j<=cur_font->num_glyphs_used; j++)
1138                 if (cur_font->glyphmap[j] == glyph_no) break;
1139               if (j==256) j=0; // font is full, what do we do?
1140               if (j>cur_font->num_glyphs_used) {
1141                 cur_font->glyphmap[j] = glyph_no; 
1142                 cur_font->num_glyphs_used++;
1143                 if (FT_Get_Glyph_Name(ftface, glyph_no, tmpstr, 200) == FT_Err_Ok)
1144                   cur_font->glyphpsnames[j] = g_strdup(tmpstr);
1145                 else cur_font->glyphpsnames[j] = g_strdup(".notdef");
1146               }
1147               glyph_no = j;
1148             }
1149             cur_font->advance[glyph_no] = advance;
1150             if (glyph_no=='\\' || glyph_no == '(' || glyph_no == ')' || glyph_no == 10 || glyph_no == 13) 
1151               g_string_append_c(str, '\\');
1152             if (glyph_no==10) g_string_append_c(str,'n');
1153             else if (glyph_no==13) g_string_append_c(str,'r');
1154             else g_string_append_c(str, glyph_no);
1155           }
1156           if (in_string) g_string_append(str, ") Tj ");
1157           g_string_append(str, "ET ");
1158           pango_fc_font_unlock_face(fcfont);
1159         } while (pango_layout_iter_next_run(iter));
1160         pango_layout_iter_free(iter);
1161         g_object_unref(layout);
1162       }
1163     }
1164   }
1165 }
1166
1167 // main printing function
1168
1169 /* we use the following object numbers, starting with n_obj_catalog:
1170     0 the document catalog
1171     1 the page tree
1172     2 the GS for the hiliters
1173     3 ... the page objects
1174 */
1175
1176 gboolean print_to_pdf(char *filename)
1177 {
1178   FILE *f;
1179   GString *pdfbuf, *pgstrm, *zpgstrm, *tmpstr;
1180   int n_obj_catalog, n_obj_pages_offs, n_page, n_obj_bgpix, n_obj_prefix;
1181   int i, startxref;
1182   struct XrefTable xref;
1183   GList *pglist;
1184   struct Page *pg;
1185   gboolean annot, uses_pdf;
1186   gboolean use_hiliter;
1187   struct PdfInfo pdfinfo;
1188   struct PdfObj *obj;
1189   GList *pdffonts, *list;
1190   struct PdfFont *font;
1191   char *tmpbuf;
1192   
1193   f = fopen(filename, "w");
1194   if (f == NULL) return FALSE;
1195   setlocale(LC_NUMERIC, "C");
1196   annot = FALSE;
1197   xref.data = NULL;
1198   uses_pdf = FALSE;
1199   pdffonts = NULL;
1200   for (pglist = journal.pages; pglist!=NULL; pglist = pglist->next) {
1201     pg = (struct Page *)pglist->data;
1202     if (pg->bg->type == BG_PDF) uses_pdf = TRUE;
1203   }
1204   
1205   if (uses_pdf && bgpdf.status != STATUS_NOT_INIT && 
1206       bgpdf.file_contents!=NULL && !strncmp(bgpdf.file_contents, "%PDF-1.", 7)) {
1207     // parse the existing PDF file
1208     pdfbuf = g_string_new_len(bgpdf.file_contents, bgpdf.file_length);
1209     if (pdfbuf->str[7]<'4') pdfbuf->str[7] = '4'; // upgrade to 1.4
1210     annot = pdf_parse_info(pdfbuf, &pdfinfo, &xref);
1211     if (!annot) {
1212       g_string_free(pdfbuf, TRUE);
1213       if (xref.data != NULL) g_free(xref.data);
1214     }
1215   }
1216
1217   if (!annot) {
1218     pdfbuf = g_string_new("%PDF-1.4\n%\370\357\365\362\n");
1219     xref.n_alloc = xref.last = 0;
1220     xref.data = NULL;
1221   }
1222     
1223   // catalog and page tree
1224   n_obj_catalog = xref.last+1;
1225   n_obj_pages_offs = xref.last+4;
1226   make_xref(&xref, n_obj_catalog, pdfbuf->len);
1227   g_string_append_printf(pdfbuf, 
1228     "%d 0 obj\n<< /Type /Catalog /Pages %d 0 R >> endobj\n",
1229      n_obj_catalog, n_obj_catalog+1);
1230   make_xref(&xref, n_obj_catalog+1, pdfbuf->len);
1231   g_string_append_printf(pdfbuf,
1232     "%d 0 obj\n<< /Type /Pages /Kids [", n_obj_catalog+1);
1233   for (i=0;i<journal.npages;i++)
1234     g_string_append_printf(pdfbuf, "%d 0 R ", n_obj_pages_offs+i);
1235   g_string_append_printf(pdfbuf, "] /Count %d >> endobj\n", journal.npages);
1236   make_xref(&xref, n_obj_catalog+2, pdfbuf->len);
1237   g_string_append_printf(pdfbuf, 
1238     "%d 0 obj\n<< /Type /ExtGState /CA %.2f >> endobj\n",
1239      n_obj_catalog+2, ui.hiliter_opacity);
1240   xref.last = n_obj_pages_offs + journal.npages-1;
1241   
1242   for (pglist = journal.pages, n_page = 0; pglist!=NULL;
1243        pglist = pglist->next, n_page++) {
1244     pg = (struct Page *)pglist->data;
1245     
1246     // draw the background and page into pgstrm
1247     pgstrm = g_string_new("");
1248     g_string_printf(pgstrm, "q 1 0 0 -1 0 %.2f cm 1 J 1 j ", pg->height);
1249     n_obj_bgpix = -1;
1250     n_obj_prefix = -1;
1251     if (pg->bg->type == BG_SOLID)
1252       pdf_draw_solid_background(pg, pgstrm);
1253     else if (pg->bg->type == BG_PDF && annot && 
1254              pdfinfo.pages[pg->bg->file_page_seq-1].contents!=NULL) {
1255       make_xref(&xref, xref.last+1, pdfbuf->len);
1256       n_obj_prefix = xref.last;
1257       tmpstr = make_pdfprefix(pdfinfo.pages+(pg->bg->file_page_seq-1),
1258                               pg->width, pg->height);
1259       g_string_append_printf(pdfbuf,
1260         "%d 0 obj\n<< /Length %d >> stream\n%s\nendstream\nendobj\n",
1261         n_obj_prefix, tmpstr->len, tmpstr->str);
1262       g_string_free(tmpstr, TRUE);
1263       g_string_prepend(pgstrm, "Q Q Q ");
1264     }
1265     else if (pg->bg->type == BG_PIXMAP || pg->bg->type == BG_PDF)
1266       n_obj_bgpix = pdf_draw_bitmap_background(pg, pgstrm, &xref, pdfbuf);
1267     // draw the page contents
1268     use_hiliter = FALSE;
1269     pdf_draw_page(pg, pgstrm, &use_hiliter, &xref, &pdffonts);
1270     g_string_append_printf(pgstrm, "Q\n");
1271     
1272     // deflate pgstrm and write it
1273     zpgstrm = do_deflate(pgstrm->str, pgstrm->len);
1274     g_string_free(pgstrm, TRUE);
1275     
1276     make_xref(&xref, xref.last+1, pdfbuf->len);
1277     g_string_append_printf(pdfbuf, 
1278       "%d 0 obj\n<< /Length %d /Filter /FlateDecode>> stream\n",
1279       xref.last, zpgstrm->len);
1280     g_string_append_len(pdfbuf, zpgstrm->str, zpgstrm->len);
1281     g_string_free(zpgstrm, TRUE);
1282     g_string_append(pdfbuf, "endstream\nendobj\n");
1283     
1284     // write the page object
1285     
1286     make_xref(&xref, n_obj_pages_offs+n_page, pdfbuf->len);
1287     g_string_append_printf(pdfbuf, 
1288       "%d 0 obj\n<< /Type /Page /Parent %d 0 R /MediaBox [0 0 %.2f %.2f] ",
1289       n_obj_pages_offs+n_page, n_obj_catalog+1, pg->width, pg->height);
1290     if (n_obj_prefix>0) {
1291       obj = get_pdfobj(pdfbuf, &xref, pdfinfo.pages[pg->bg->file_page_seq-1].contents);
1292       if (obj->type != PDFTYPE_ARRAY) {
1293         free_pdfobj(obj);
1294         obj = dup_pdfobj(pdfinfo.pages[pg->bg->file_page_seq-1].contents);
1295       }
1296       g_string_append_printf(pdfbuf, "/Contents [%d 0 R ", n_obj_prefix);
1297       if (obj->type == PDFTYPE_REF) 
1298         g_string_append_printf(pdfbuf, "%d %d R ", obj->intval, obj->num);
1299       if (obj->type == PDFTYPE_ARRAY) {
1300         for (i=0; i<obj->num; i++) {
1301           show_pdfobj(obj->elts[i], pdfbuf);
1302           g_string_append_c(pdfbuf, ' ');
1303         }
1304       }
1305       free_pdfobj(obj);
1306       g_string_append_printf(pdfbuf, "%d 0 R] ", xref.last);
1307     }
1308     else g_string_append_printf(pdfbuf, "/Contents %d 0 R ", xref.last);
1309     g_string_append(pdfbuf, "/Resources ");
1310
1311     if (n_obj_prefix>0)
1312       obj = dup_pdfobj(pdfinfo.pages[pg->bg->file_page_seq-1].resources);
1313     else obj = NULL;
1314     if (obj!=NULL && obj->type!=PDFTYPE_DICT)
1315       { free_pdfobj(obj); obj=NULL; }
1316     if (obj==NULL) {
1317       obj = g_malloc(sizeof(struct PdfObj));
1318       obj->type = PDFTYPE_DICT;
1319       obj->num = 0;
1320       obj->elts = NULL;
1321       obj->names = NULL;
1322     }
1323     add_dict_subentry(pdfbuf, &xref,
1324         obj, "/ProcSet", PDFTYPE_ARRAY, NULL, mk_pdfname("/PDF"));
1325     if (n_obj_bgpix>0)
1326       add_dict_subentry(pdfbuf, &xref,
1327         obj, "/ProcSet", PDFTYPE_ARRAY, NULL, mk_pdfname("/ImageC"));
1328     if (use_hiliter)
1329       add_dict_subentry(pdfbuf, &xref,
1330         obj, "/ExtGState", PDFTYPE_DICT, "/XoHi", mk_pdfref(n_obj_catalog+2));
1331     if (n_obj_bgpix>0)
1332       add_dict_subentry(pdfbuf, &xref,
1333         obj, "/XObject", PDFTYPE_DICT, "/ImBg", mk_pdfref(n_obj_bgpix));
1334     for (list=pdffonts; list!=NULL; list = list->next) {
1335       font = (struct PdfFont *)list->data;
1336       if (font->used_in_this_page) {
1337         add_dict_subentry(pdfbuf, &xref,
1338           obj, "/ProcSet", PDFTYPE_ARRAY, NULL, mk_pdfname("/Text"));
1339         tmpbuf = g_strdup_printf("/F%d", font->n_obj);
1340         add_dict_subentry(pdfbuf, &xref,
1341           obj, "/Font", PDFTYPE_DICT, tmpbuf, mk_pdfref(font->n_obj));
1342         g_free(tmpbuf);
1343       }
1344     }
1345     show_pdfobj(obj, pdfbuf);
1346     free_pdfobj(obj);
1347     g_string_append(pdfbuf, " >> endobj\n");
1348   }
1349   
1350   // after the pages, we insert fonts
1351   for (list = pdffonts; list!=NULL; list = list->next) {
1352     font = (struct PdfFont *)list->data;
1353     embed_pdffont(pdfbuf, &xref, font);
1354     g_free(font->filename);
1355     g_free(font->fontname);
1356     g_free(font);
1357   }
1358   g_list_free(pdffonts);
1359   
1360   // PDF trailer
1361   startxref = pdfbuf->len;
1362   if (annot) g_string_append_printf(pdfbuf,
1363         "xref\n%d %d\n", n_obj_catalog, xref.last-n_obj_catalog+1);
1364   else g_string_append_printf(pdfbuf, 
1365         "xref\n0 %d\n0000000000 65535 f \n", xref.last+1);
1366   for (i=n_obj_catalog; i<=xref.last; i++)
1367     g_string_append_printf(pdfbuf, "%010d 00000 n \n", xref.data[i]);
1368   g_string_append_printf(pdfbuf, 
1369     "trailer\n<< /Size %d /Root %d 0 R ", xref.last+1, n_obj_catalog);
1370   if (annot) {
1371     g_string_append_printf(pdfbuf, "/Prev %d ", pdfinfo.startxref);
1372     // keeping encryption info somehow doesn't work.
1373     // xournal can't annotate encrypted PDFs anyway...
1374 /*    
1375     obj = get_dict_entry(pdfinfo.trailerdict, "/Encrypt");
1376     if (obj!=NULL) {
1377       g_string_append_printf(pdfbuf, "/Encrypt ");
1378       show_pdfobj(obj, pdfbuf);
1379     } 
1380 */
1381   }
1382   g_string_append_printf(pdfbuf, 
1383     ">>\nstartxref\n%d\n%%%%EOF\n", startxref);
1384   
1385   g_free(xref.data);
1386   if (annot) {
1387     free_pdfobj(pdfinfo.trailerdict);
1388     if (pdfinfo.pages!=NULL)
1389       for (i=0; i<pdfinfo.npages; i++) {
1390         free_pdfobj(pdfinfo.pages[i].resources);
1391         free_pdfobj(pdfinfo.pages[i].mediabox);
1392         free_pdfobj(pdfinfo.pages[i].contents);
1393       }
1394   }
1395   
1396   setlocale(LC_NUMERIC, "");
1397   if (fwrite(pdfbuf->str, 1, pdfbuf->len, f) < pdfbuf->len) {
1398     fclose(f);
1399     g_string_free(pdfbuf, TRUE);
1400     return FALSE;
1401   }
1402   fclose(f);
1403   g_string_free(pdfbuf, TRUE);
1404   return TRUE;
1405 }
1406
1407 /*********** Printing via gtk-print **********/
1408
1409 #if GTK_CHECK_VERSION(2, 10, 0)
1410
1411 // does the same job as update_canvas_bg(), but to a print context
1412
1413 void print_background(cairo_t *cr, struct Page *pg)
1414 {
1415   double x, y;
1416   GdkPixbuf *pix;
1417   BgPdfPage *pgpdf;
1418   PopplerPage *pdfpage;
1419   cairo_surface_t *cr_pixbuf;
1420   double pgwidth, pgheight;
1421
1422   if (pg->bg->type == BG_SOLID) {
1423     cairo_set_source_rgb(cr, RGBA_RGB(pg->bg->color_rgba));
1424     cairo_rectangle(cr, 0, 0, pg->width, pg->height);
1425     cairo_fill(cr);
1426     if (!ui.print_ruling) return;
1427     if (pg->bg->ruling == RULING_NONE) return;
1428     cairo_set_source_rgb(cr, RGBA_RGB(RULING_COLOR));
1429     cairo_set_line_width(cr, RULING_THICKNESS);
1430
1431     if (pg->bg->ruling == RULING_GRAPH) {
1432       for (x=RULING_GRAPHSPACING; x<pg->width-1; x+=RULING_GRAPHSPACING)
1433         { cairo_move_to(cr, x, 0); cairo_line_to(cr, x, pg->height); }
1434       for (y=RULING_GRAPHSPACING; y<pg->height-1; y+=RULING_GRAPHSPACING)
1435         { cairo_move_to(cr, 0, y); cairo_line_to(cr, pg->width, y); }
1436       cairo_stroke(cr);
1437       return;
1438     }
1439     
1440     for (y=RULING_TOPMARGIN; y<pg->height-1; y+=RULING_SPACING)
1441       { cairo_move_to(cr, 0, y); cairo_line_to(cr, pg->width, y); }
1442     cairo_stroke(cr);
1443     if (pg->bg->ruling == RULING_LINED) {
1444       cairo_set_source_rgb(cr, RGBA_RGB(RULING_MARGIN_COLOR));
1445       cairo_move_to(cr, RULING_LEFTMARGIN, 0);
1446       cairo_line_to(cr, RULING_LEFTMARGIN, pg->height);
1447       cairo_stroke(cr);
1448     }
1449     return;
1450   }
1451   else
1452   if (pg->bg->type == BG_PDF) {
1453     if (!bgpdf.document) return;
1454     pdfpage = poppler_document_get_page(bgpdf.document, pg->bg->file_page_seq-1);
1455     if (!pdfpage) return;
1456     poppler_page_get_size(pdfpage, &pgwidth, &pgheight);
1457     cairo_save(cr);
1458     cairo_scale(cr, pg->width/pgwidth, pg->height/pgheight);
1459     poppler_page_render(pdfpage, cr);
1460     cairo_restore(cr);
1461     g_object_unref(pdfpage);
1462   }
1463   else 
1464   if (pg->bg->type == BG_PIXMAP) {
1465     cairo_save(cr);
1466     cairo_scale(cr, pg->width/gdk_pixbuf_get_width(pg->bg->pixbuf),
1467                     pg->height/gdk_pixbuf_get_height(pg->bg->pixbuf));
1468     gdk_cairo_set_source_pixbuf(cr, pg->bg->pixbuf, 0, 0);
1469     cairo_rectangle(cr, 0, 0, gdk_pixbuf_get_width(pg->bg->pixbuf), gdk_pixbuf_get_height(pg->bg->pixbuf));
1470     cairo_fill(cr);
1471     cairo_restore(cr);
1472   }
1473 }
1474
1475 void print_job_render_page(GtkPrintOperation *print, GtkPrintContext *context, gint pageno, gpointer user_data)
1476 {
1477   cairo_t *cr;
1478   gdouble width, height, scale;
1479   struct Page *pg;
1480   guint old_rgba;
1481   double old_thickness;
1482   GList *layerlist, *itemlist;
1483   struct Layer *l;
1484   struct Item *item;
1485   int i;
1486   double *pt;
1487   PangoFontDescription *font_desc;
1488   PangoLayout *layout;
1489         
1490   pg = (struct Page *)g_list_nth_data(journal.pages, pageno);
1491   cr = gtk_print_context_get_cairo_context(context);
1492   width = gtk_print_context_get_width(context);
1493   height = gtk_print_context_get_height(context);
1494   scale = MIN(width/pg->width, height/pg->height);
1495   
1496   cairo_translate(cr, (width-scale*pg->width)/2, (height-scale*pg->height)/2);
1497   cairo_scale(cr, scale, scale);
1498   cairo_set_line_join(cr, CAIRO_LINE_JOIN_ROUND);
1499   cairo_set_line_cap(cr, CAIRO_LINE_CAP_ROUND);
1500   
1501   print_background(cr, pg);
1502
1503   old_rgba = predef_colors_rgba[COLOR_BLACK];
1504   cairo_set_source_rgb(cr, 0, 0, 0);
1505   old_thickness = 0.0;
1506
1507   for (layerlist = pg->layers; layerlist!=NULL; layerlist = layerlist->next) {
1508     l = (struct Layer *)layerlist->data;
1509     for (itemlist = l->items; itemlist!=NULL; itemlist = itemlist->next) {
1510       item = (struct Item *)itemlist->data;
1511       if (item->type == ITEM_STROKE || item->type == ITEM_TEXT) {
1512         if (item->brush.color_rgba != old_rgba)
1513           cairo_set_source_rgba(cr, RGBA_RGB(item->brush.color_rgba),
1514                                     RGBA_ALPHA(item->brush.color_rgba));
1515         old_rgba = item->brush.color_rgba;
1516       }
1517       if (item->type == ITEM_STROKE) {    
1518         if (item->brush.thickness != old_thickness)
1519           cairo_set_line_width(cr, item->brush.thickness);
1520         pt = item->path->coords;
1521         if (!item->brush.variable_width) {
1522           cairo_move_to(cr, pt[0], pt[1]);
1523           for (i=1, pt+=2; i<item->path->num_points; i++, pt+=2)
1524             cairo_line_to(cr, pt[0], pt[1]);
1525           cairo_stroke(cr);
1526           old_thickness = item->brush.thickness;
1527         } else {
1528           for (i=0; i<item->path->num_points-1; i++, pt+=2) {
1529             cairo_move_to(cr, pt[0], pt[1]);
1530             cairo_set_line_width(cr, item->widths[i]);
1531             cairo_line_to(cr, pt[2], pt[3]);
1532             cairo_stroke(cr);
1533           }
1534           old_thickness = 0.0;
1535         }
1536       }
1537       if (item->type == ITEM_TEXT) {
1538         layout = gtk_print_context_create_pango_layout(context);
1539         font_desc = pango_font_description_from_string(item->font_name);
1540         if (item->font_size)
1541           pango_font_description_set_absolute_size(font_desc,
1542             item->font_size*PANGO_SCALE);
1543         pango_layout_set_font_description(layout, font_desc);
1544         pango_font_description_free(font_desc);
1545         pango_layout_set_text(layout, item->text, -1);
1546         cairo_move_to(cr, item->bbox.left, item->bbox.top);
1547         pango_cairo_show_layout(cr, layout);
1548         g_object_unref(layout);
1549       }
1550     }
1551   }
1552 }
1553
1554 #endif