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