added kerning to fonts
[swftools.git] / lib / ruby / gfx.c
1 #include <ruby.h>
2 #include "../gfxdevice.h"
3 #include "../gfxsource.h"
4 #include "../gfxtools.h"
5 #include "../gfximage.h"
6 #include "../devices/pdf.h"
7 #include "../readers/swf.h"
8 #include "../readers/image.h"
9 #include "../pdf/pdf.h"
10 #include "../mem.h"
11 #include "../types.h"
12
13 #define RUBY_GFX_VERSION  "0.9.0"
14
15 static VALUE GFX;
16 static VALUE Font, Glyph, Bitmap, Document, DocumentPage, PDFClass, SWFClass, ImageClass, Device;
17 static ID id_doc;
18
19 typedef struct doc_internal {
20     VALUE self;
21     gfxsource_t*driver; // filled by alloc
22     gfxdocument_t*doc;
23     gfxfontlist_t*fontlist;
24 } doc_internal_t;
25
26 typedef struct page_internal {
27     doc_internal_t*doc;
28     gfxpage_t*page;
29 } page_internal_t;
30
31 typedef struct image_internal {
32     doc_internal_t*doc;
33     gfximage_t*image;
34 } image_internal_t;
35
36 typedef struct font_internal {
37     VALUE self;
38     VALUE glyph_array;
39     gfxfont_t*font;
40 } font_internal_t;
41
42 typedef struct glyph_internal {
43     font_internal_t*font;
44     int nr;
45 } glyph_internal_t;
46
47 static gfxsource_t* pdfdriver = 0;
48 static gfxsource_t* imagedriver = 0;
49 static gfxsource_t* swfdriver = 0;
50
51 #define Get_Doc(doc,cls) doc_internal_t*doc=0;Data_Get_Struct(cls, doc_internal_t, doc);
52 #define Get_Page(page,cls) page_internal_t*page=0;Data_Get_Struct(cls, page_internal_t, page);
53
54 static VALUE doc_allocate(VALUE cls, gfxsource_t*driver);
55 static VALUE page_allocate(VALUE cls);
56
57 // ------------------------ documents ---------------------------------------
58
59 static VALUE doc_initialize(VALUE cls, VALUE _filename)
60 {
61     Check_Type(_filename, T_STRING);
62     Get_Doc(doc,cls);
63     const char*filename = StringValuePtr(_filename);
64     doc->fontlist = gfxfontlist_create();
65     doc->doc = pdfdriver->open(pdfdriver, filename);
66     if(!doc->doc) {
67         rb_raise(rb_eIOError, "couldn't open %s", filename);
68     }
69     return cls;
70 }
71
72 static VALUE doc_num_pages(VALUE cls)
73 {
74     Get_Doc(doc,cls)
75     return INT2FIX(doc->doc->num_pages);
76 }
77
78 static VALUE doc_get_page(VALUE cls, VALUE _nr)
79 {
80     Check_Type(_nr, T_FIXNUM);
81     int nr = FIX2INT(_nr);
82     Get_Doc(doc,cls);
83
84     VALUE v = page_allocate(DocumentPage);
85     Get_Page(page,v)
86     page->page = doc->doc->getpage(doc->doc, nr);
87     page->doc = doc;
88     if(!page->page) {
89         rb_raise(rb_eArgError, "No page %d in document", nr);
90         return;
91     }
92     return v;
93 }
94
95 static VALUE doc_each_page(VALUE cls)
96 {
97     Get_Doc(doc,cls);
98     int t;
99     for(t=1;t<=doc->doc->num_pages;t++) {
100         VALUE v = page_allocate(DocumentPage);
101         Get_Page(page,v)
102         page->page = doc->doc->getpage(doc->doc, t);
103         page->doc = doc;
104         rb_yield(v);
105     }
106     return cls;
107 }
108
109 static void doc_mark(doc_internal_t*doc)
110 {
111     gfxfontlist_t*l = doc->fontlist;
112     while(l) {
113         if(l->user) 
114             rb_gc_mark((VALUE)l->user);
115         l = l->next;
116     }
117 }
118
119 static void doc_free(doc_internal_t*doc)
120 {
121     gfxfontlist_free(doc->fontlist, 0);
122     doc->doc->destroy(doc->doc);
123     free(doc);
124 }
125
126 static VALUE doc_allocate(VALUE cls, gfxsource_t*driver)
127 {
128     doc_internal_t*doc = 0;
129     VALUE v = Data_Make_Struct(cls, doc_internal_t, doc_mark, doc_free, doc);
130     doc->self = v;
131     memset(doc, 0, sizeof(doc_internal_t));
132     doc->driver = driver;
133     return v;
134 }
135
136 static VALUE pdf_allocate(VALUE cls) {return doc_allocate(cls, pdfdriver);}
137 static VALUE swf_allocate(VALUE cls) {return doc_allocate(cls, swfdriver);}
138 static VALUE imgdrv_allocate(VALUE cls) {return doc_allocate(cls, imagedriver);}
139
140 // ------------------------ doc pages ---------------------------------------
141
142 static void page_free(page_internal_t*page)
143 {
144     if(!page) return;
145     if(page->page) {
146         page->page->destroy(page->page);
147         page->page = 0;
148     }
149     free(page);
150 }
151 static void page_mark(page_internal_t*page)
152 {
153     rb_gc_mark(page->doc->self);
154 }
155 static VALUE page_allocate(VALUE cls)
156 {
157     page_internal_t*page = 0;
158     VALUE v = Data_Make_Struct(cls, page_internal_t, page_mark, page_free, page);
159     memset(page, 0, sizeof(page_internal_t));
160     return v;
161 }
162 static VALUE page_nr(VALUE cls)
163 {
164     Get_Page(page,cls)
165     return INT2FIX(page->page->nr);
166 }
167 static VALUE page_width(VALUE cls)
168 {
169     Get_Page(page,cls)
170     return INT2FIX(page->page->width);
171 }
172 static VALUE page_height(VALUE cls)
173 {
174     Get_Page(page,cls)
175     return INT2FIX(page->page->height);
176 }
177
178 // ------------------------ image -------------------------------------------
179
180 #define Get_Image(image,cls) image_internal_t*image=0;Data_Get_Struct(cls, image_internal_t, image);
181
182 static void image_free(image_internal_t*image)
183 {
184     free(image);
185 }
186 static void image_mark(image_internal_t*image)
187 {
188     rb_gc_mark(image->doc->self);
189 }
190 static VALUE image_allocate(VALUE cls)
191 {
192     image_internal_t*image = 0;
193     VALUE v = Data_Make_Struct(cls, image_internal_t, image_mark, image_free, image);
194     memset(image, 0, sizeof(image_internal_t));
195     return v;
196 }
197 static VALUE image_width(VALUE cls)
198 {
199     Get_Image(image,cls)
200     return INT2FIX(image->image->width);
201 }
202 static VALUE image_height(VALUE cls)
203 {
204     Get_Image(image,cls)
205     return INT2FIX(image->image->height);
206 }
207 static VALUE image_rescale(VALUE cls, VALUE _width, VALUE _height)
208 {
209     Get_Image(image,cls)
210     Check_Type(_width, T_FIXNUM);
211     Check_Type(_height, T_FIXNUM);
212     int width = FIX2INT(_width);
213     int height = FIX2INT(_height);
214     volatile VALUE v_image2 = image_allocate(Bitmap);
215     Get_Image(image2,v_image2)
216     image2->doc = image->doc;
217     image2->image = gfximage_rescale(image->image, width, height);
218     return v_image2;
219 }
220 static VALUE image_save_jpeg(VALUE cls, VALUE _filename, VALUE quality)
221 {
222     Get_Image(image,cls)
223     Check_Type(_filename, T_STRING);
224     Check_Type(quality, T_FIXNUM);
225     const char*filename = StringValuePtr(_filename);
226     gfximage_save_jpeg(image->image, filename, FIX2INT(quality));
227     return cls;
228 }
229 static VALUE image_save_png(VALUE cls, VALUE _filename)
230 {
231     Get_Image(image,cls)
232     Check_Type(_filename, T_STRING);
233     const char*filename = StringValuePtr(_filename);
234     gfximage_save_png(image->image, filename);
235     return cls;
236 }
237 VALUE convert_image(doc_internal_t*doc,gfximage_t*_image)
238 {
239     VALUE v = image_allocate(Bitmap);
240     Get_Image(image,v)
241     image->image = _image;
242     image->doc = doc;
243     return v;
244 }
245 void invalidate_image(VALUE v)
246 {
247     Get_Image(image,v)
248     image->image = 0;
249 }
250
251 // ------------------------ glyphs ------------------------------------------
252
253 static VALUE convert_line(gfxline_t*line);
254
255 #define Get_Glyph(glyph,cls) glyph_internal_t*glyph=0;Data_Get_Struct(cls, glyph_internal_t, glyph);
256
257 static void glyph_free(glyph_internal_t*glyph)
258 {
259     free(glyph);
260 }
261
262 static void glyph_mark(glyph_internal_t*glyph)
263 {
264     rb_gc_mark(glyph->font->self);
265 }
266
267 static VALUE glyph_allocate(VALUE cls)
268 {
269     glyph_internal_t*glyph = 0;
270     VALUE v = Data_Make_Struct(cls, glyph_internal_t, glyph_mark, glyph_free, glyph);
271     memset(glyph, 0, sizeof(glyph_internal_t));
272     return v;
273 }
274
275 static VALUE glyph_polygon(VALUE cls)
276 {
277     Get_Glyph(glyph,cls);
278     return convert_line(glyph->font->font->glyphs[glyph->nr].line);
279 }
280
281 static VALUE glyph_advance(VALUE cls)
282 {
283     Get_Glyph(glyph,cls);
284     return rb_float_new(glyph->font->font->glyphs[glyph->nr].advance);
285 }
286
287 static VALUE glyph_bbox(VALUE cls)
288 {
289     Get_Glyph(glyph,cls);
290     gfxbbox_t bbox = gfxline_getbbox(glyph->font->font->glyphs[glyph->nr].line);
291     return rb_ary_new3(4, rb_float_new(bbox.xmin), 
292                           rb_float_new(bbox.ymin), 
293                           rb_float_new(bbox.xmax), 
294                           rb_float_new(bbox.ymax));
295 }
296
297 static VALUE glyph_unicode(VALUE cls)
298 {
299     Get_Glyph(glyph,cls);
300     return INT2FIX(glyph->font->font->glyphs[glyph->nr].unicode);
301 }
302
303 // ------------------------ font --------------------------------------------
304
305 #define Get_Font(font,cls) font_internal_t*font=0;Data_Get_Struct(cls, font_internal_t, font);
306
307 static void font_mark(font_internal_t*font)
308 {
309     rb_gc_mark(font->glyph_array);
310 }
311
312 static void font_free(font_internal_t*font)
313 {
314     free(font);
315 }
316
317 static VALUE font_allocate(VALUE cls)
318 {
319     font_internal_t*font = 0;
320     VALUE v = Data_Make_Struct(cls, font_internal_t, font_mark, font_free, font);
321     memset(font, 0, sizeof(font_internal_t));
322     font->self = v;
323     return v;
324 }
325
326 static VALUE font_ascent(VALUE cls)
327 {
328     Get_Font(font,cls);
329     return rb_float_new(font->font->ascent);
330 }
331
332 static VALUE font_descent(VALUE cls)
333 {
334     Get_Font(font,cls);
335     return rb_float_new(font->font->descent);
336 }
337
338 static VALUE font_name(VALUE cls)
339 {
340     Get_Font(font,cls);
341     return rb_tainted_str_new2(font->font->id);
342 }
343
344 static VALUE font_glyphs(VALUE cls)
345 {
346     Get_Font(font,cls);
347     return font->glyph_array;
348 }
349
350 static VALUE font_kerning(VALUE cls)
351 {
352     Get_Font(font,cls);
353     gfxkerning_t*kerning = font->font->kerning;
354     int kerning_size = font->font->kerning_size;
355     volatile VALUE a = rb_ary_new2(kerning_size);
356     int t;
357     for(t=0;t<kerning_size;t++) {
358         volatile VALUE tuple = rb_ary_new2(3);
359         rb_ary_store(tuple, 0, INT2FIX(kerning[t].c1));
360         rb_ary_store(tuple, 1, INT2FIX(kerning[t].c2));
361         rb_ary_store(tuple, 2, INT2FIX(kerning[t].advance));
362         rb_ary_store(a, t, tuple);
363     }
364     return a;
365 }
366
367 // ------------------------ gfx device --------------------------------------
368
369 typedef struct device_internal {
370     doc_internal_t*doc;
371     VALUE v;
372 } device_internal_t;
373
374 static ID id_setparameter = 0;
375 static ID id_startpage = 0;
376 static ID id_startclip = 0;
377 static ID id_endclip = 0;
378 static ID id_stroke = 0;
379 static ID id_fill = 0;
380 static ID id_fillbitmap = 0;
381 static ID id_fillgradient = 0;
382 static ID id_addfont = 0;
383 static ID id_drawchar = 0;
384 static ID id_drawlink = 0;
385 static ID id_endpage = 0;
386 static ID id_geterror = 0;
387 static ID id_finish = 0;
388 static ID id_butt = 0;
389 static ID id_round = 0;
390 static ID id_square = 0;
391 static ID id_bevel = 0;
392 static ID id_miter = 0;
393 static ID id_move = 0;
394 static ID id_line = 0;
395 static ID id_spline = 0;
396 static ID id_radial = 0;
397 static ID id_linear = 0;
398
399 static VALUE noop(int argc, VALUE *argv, VALUE obj) {return obj;}
400
401 #define forward(v,id,args...) rb_respond_to((v), (id))?rb_funcall((v), (id), args):0
402
403 VALUE convert_line(gfxline_t*line)
404 {
405     int len = 0;
406     gfxline_t*l = line;
407     while(l) {l=l->next;len++;}
408
409     volatile VALUE array = rb_ary_new2(len);
410
411     int pos = 0;
412     l = line;
413     while(l) {
414         volatile VALUE e;
415         if(l->type == gfx_moveTo) {
416             e = rb_ary_new3(3, ID2SYM(id_move), Qfalse, Qfalse);
417             rb_ary_store(array, pos, e);
418             rb_ary_store(e, 1, rb_float_new(l->x));
419             rb_ary_store(e, 2, rb_float_new(l->y));
420         } else if(l->type == gfx_lineTo) {
421             e = rb_ary_new3(3, ID2SYM(id_line), Qfalse, Qfalse);
422             rb_ary_store(array, pos, e);
423             rb_ary_store(e, 1, rb_float_new(l->x));
424             rb_ary_store(e, 2, rb_float_new(l->y));
425         } else {
426             e = rb_ary_new3(5, ID2SYM(id_spline), Qfalse, Qfalse, Qfalse, Qfalse);
427             rb_ary_store(array, pos, e);
428             rb_ary_store(e, 1, rb_float_new(l->x));
429             rb_ary_store(e, 2, rb_float_new(l->y));
430             rb_ary_store(e, 3, rb_float_new(l->sx));
431             rb_ary_store(e, 4, rb_float_new(l->sy));
432         }
433         pos++;
434         l=l->next;
435     }
436     return array;
437 }
438 VALUE convert_color(gfxcolor_t*color)
439 {
440     return rb_ary_new3(4, INT2FIX(color->a), INT2FIX(color->r), INT2FIX(color->g), INT2FIX(color->b));
441 }
442 VALUE convert_matrix(gfxmatrix_t*matrix)
443 {
444     volatile VALUE array = rb_ary_new2(3);
445     volatile VALUE a = rb_ary_new2(2);
446     rb_ary_store(array, 0, a);
447     rb_ary_store(a, 0, rb_float_new(matrix->m00));
448     rb_ary_store(a, 1, rb_float_new(matrix->m01));
449     a = rb_ary_new2(2);
450     rb_ary_store(array, 1, a);
451     rb_ary_store(a, 0, rb_float_new(matrix->m10));
452     rb_ary_store(a, 1, rb_float_new(matrix->m11));
453     a = rb_ary_new2(2);
454     rb_ary_store(array, 2, a);
455     rb_ary_store(a, 0, rb_float_new(matrix->tx));
456     rb_ary_store(a, 1, rb_float_new(matrix->ty));
457     return array;
458 }
459 static VALUE font_is_cached(device_internal_t*i, gfxfont_t*font)
460 {
461     return (VALUE)gfxfontlist_getuserdata(i->doc->fontlist, font->id);
462 }
463 static void cache_font(device_internal_t*i, gfxfont_t*font, VALUE v)
464 {
465     i->doc->fontlist = gfxfontlist_addfont2(i->doc->fontlist, font, (void*)v);
466 }
467 static VALUE convert_font(gfxfont_t*font)
468 {
469     volatile VALUE v2 = font_allocate(Font);
470     Get_Font(f, v2);
471     f->font = font;
472     f->glyph_array = rb_ary_new2(font->num_glyphs);
473
474     int t;
475     for(t=0;t<font->num_glyphs;t++) {
476         volatile VALUE a = glyph_allocate(Glyph);
477         rb_ary_store(f->glyph_array, t, a);
478         Get_Glyph(g, a);
479         g->font = f;
480         g->nr = t;
481     }
482     return v2;
483 }
484 #define HEAD \
485     device_internal_t*i = (device_internal_t*)dev->internal; \
486     VALUE v = i->v;
487 int rb_setparameter(gfxdevice_t*dev, const char*key, const char*value)
488 {
489     HEAD
490     volatile VALUE v_key = rb_tainted_str_new2(key);
491     volatile VALUE v_value = rb_tainted_str_new2(value);
492     VALUE ret = forward(v,id_setparameter,2,v_key,v_value);
493     return 0;
494 }
495 void rb_startpage(gfxdevice_t*dev, int width, int height)
496 {
497     HEAD
498     VALUE ret = forward(v,id_startpage,2,INT2FIX(width),INT2FIX(height));
499 }
500 void rb_startclip(gfxdevice_t*dev, gfxline_t*line)
501 {
502     HEAD
503     volatile VALUE v_line = convert_line(line);
504     VALUE ret = forward(v,id_startclip,1,v_line);
505 }
506 void rb_endclip(gfxdevice_t*dev)
507 {
508     HEAD
509     VALUE ret = forward(v,id_endclip,0);
510 }
511 void rb_stroke(gfxdevice_t*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit)
512 {
513     HEAD
514     
515     ID cap = 0;
516     if(cap_style == gfx_capButt) cap = id_butt;
517     else if(cap_style == gfx_capRound) cap = id_round;
518     else if(cap_style == gfx_capSquare) cap = id_square;
519     
520     ID joint = 0;
521     if(joint_style == gfx_joinRound) joint = id_round;
522     else if(joint_style == gfx_joinMiter) joint = id_miter;
523     else if(joint_style == gfx_joinBevel) joint = id_bevel;
524
525     volatile VALUE v_line = convert_line(line);
526     volatile VALUE v_width = rb_float_new(width);
527     volatile VALUE v_color = convert_color(color);
528     volatile VALUE v_miter = rb_float_new(miterLimit);
529     forward(v, id_stroke, 6, v_line, v_width, v_color, ID2SYM(cap), ID2SYM(joint), v_miter);
530 }
531 void rb_fill(gfxdevice_t*dev, gfxline_t*line, gfxcolor_t*color)
532 {
533     HEAD
534     
535     volatile VALUE v_line = convert_line(line);
536     volatile VALUE v_color = convert_color(color);
537     forward(v, id_fill, 2, v_line, v_color);
538 }
539 void rb_fillbitmap(gfxdevice_t*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*matrix, gfxcxform_t*cxform)
540 {
541     HEAD
542     volatile VALUE v_image = convert_image(i->doc, img);
543     volatile VALUE v_line = convert_line(line);
544     volatile VALUE v_matrix = convert_matrix(matrix);
545     forward(v, id_fillbitmap, 4, v_line, v_image, v_matrix, Qnil);
546     invalidate_image(v_image);
547 }
548 void rb_fillgradient(gfxdevice_t*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix)
549 {
550     HEAD
551     ID typeid = (type == gfxgradient_linear)? id_linear : id_radial;
552     
553     volatile VALUE v_line = convert_line(line);
554     volatile VALUE v_matrix = convert_matrix(matrix);
555     volatile VALUE v_gradient = convert_gradient(gradient);
556     forward(v, id_fillgradient, 4, v_line, v_gradient, ID2SYM(typeid), v_matrix);
557 }
558 void rb_addfont(gfxdevice_t*dev, gfxfont_t*font)
559 {
560     HEAD
561
562     volatile VALUE f = font_is_cached(i, font);
563     if(!f) {f=convert_font(font);cache_font(i,font,f);}
564
565     forward(v, id_addfont, 1, f);
566 }
567 void rb_drawchar(gfxdevice_t*dev, gfxfont_t*font, int glyphnr, gfxcolor_t*color, gfxmatrix_t*matrix)
568 {
569     HEAD
570     volatile VALUE f = font_is_cached(i, font);
571     if(!f) {f=convert_font(font);cache_font(i,font,f);}
572
573     volatile VALUE v_color = convert_color(color);
574     volatile VALUE v_matrix = convert_matrix(matrix);
575     forward(v, id_drawchar, 4, f, INT2FIX(glyphnr), v_color, v_matrix);
576 }
577 void rb_drawlink(gfxdevice_t*dev, gfxline_t*line, const char*action)
578 {
579     HEAD
580     volatile VALUE v_line = convert_line(line);
581     volatile VALUE v_action = rb_tainted_str_new2(action);
582     forward(v, id_drawlink, v_line, v_action);
583 }
584 void rb_endpage(gfxdevice_t*dev)
585 {
586     HEAD
587     forward(v, id_endpage, 0);
588 }
589 gfxresult_t* rb_finish(gfxdevice_t*dev)
590 {
591     HEAD
592     VALUE ret = forward(v, id_endpage, 0);
593     gfxresult_t*r = (gfxresult_t*)rfx_calloc(sizeof(gfxresult_t));
594     r->internal = (void*)(ptroff_t)ret;
595     return r;
596 }
597
598 static VALUE page_render(VALUE cls, VALUE device)
599 {
600     Check_Type(device, T_OBJECT);
601     Get_Page(page,cls)
602
603     gfxdevice_t dev;
604     device_internal_t i;
605     i.v = device;
606     i.doc = page->doc;
607
608     dev.internal = &i;
609     dev.setparameter = rb_setparameter;
610     dev.startpage = rb_startpage;
611     dev.startclip = rb_startclip;
612     dev.endclip = rb_endclip;
613     dev.stroke = rb_stroke;
614     dev.fill = rb_fill;
615     dev.fillbitmap = rb_fillbitmap;
616     dev.fillgradient = rb_fillgradient;
617     dev.addfont = rb_addfont;
618     dev.drawchar = rb_drawchar;
619     dev.drawlink = rb_drawlink;
620     dev.endpage = rb_endpage;
621     dev.finish = rb_finish;
622
623     dev.startpage(&dev, page->page->width, page->page->height);
624     page->page->render(page->page, &dev);
625     dev.endpage(&dev);
626
627     return cls;
628 }
629
630 // ---------------------- global functions ----------------------------------
631
632 VALUE gfx_setparameter(VALUE module, VALUE _key, VALUE _value)
633 {
634     Check_Type(_key, T_STRING);
635     Check_Type(_value, T_STRING);
636     const char*key = StringValuePtr(_key);
637     const char*value = StringValuePtr(_value);
638     pdfdriver->setparameter(pdfdriver, key, value);
639     swfdriver->setparameter(swfdriver, key, value);
640     imagedriver->setparameter(imagedriver, key, value);
641     return GFX;
642 }
643
644 // --------------------------------------------------------------------------
645
646 void Init_gfx()
647 {
648     initLog(0,0,0,0,0,2);
649     pdfdriver = gfxsource_pdf_create();
650     swfdriver = gfxsource_swf_create();
651     imagedriver = gfxsource_image_create();
652
653     GFX = rb_define_module("GFX");
654     
655     rb_define_module_function(GFX, "setparameter", gfx_setparameter, 2);
656     
657     DocumentPage = rb_define_class_under(GFX, "DocumentPage", rb_cObject);
658     rb_define_method(DocumentPage, "width", page_width, 0);
659     rb_define_method(DocumentPage, "height", page_height, 0);
660     rb_define_method(DocumentPage, "nr", page_nr, 0);
661     rb_define_method(DocumentPage, "render", page_render, 1);
662
663     Document = rb_define_class_under(GFX, "Document", rb_cObject);
664     rb_define_method(Document, "initialize", doc_initialize, 1);
665     rb_define_method(Document, "page", doc_get_page, 1);
666     rb_define_method(Document, "each_page", doc_each_page, 0);
667     
668     Bitmap = rb_define_class_under(GFX, "Bitmap", rb_cObject);
669     rb_define_method(Bitmap, "save_jpeg", image_save_jpeg, 2);
670     rb_define_method(Bitmap, "save_png", image_save_png, 1);
671     rb_define_method(Bitmap, "width", image_width, 0);
672     rb_define_method(Bitmap, "height", image_height, 0);
673     rb_define_method(Bitmap, "rescale", image_rescale, 2);
674     
675     Glyph = rb_define_class_under(GFX, "Glyph", rb_cObject);
676     rb_define_method(Glyph, "polygon", glyph_polygon, 0);
677     rb_define_method(Glyph, "unicode", glyph_unicode, 0);
678     rb_define_method(Glyph, "advance", glyph_advance, 0);
679     rb_define_method(Glyph, "bbox", glyph_bbox, 0);
680     
681     Font = rb_define_class_under(GFX, "Font", rb_cObject);
682     rb_define_method(Font, "name", font_name, 0);
683     rb_define_method(Font, "ascent", font_ascent, 0);
684     rb_define_method(Font, "descent", font_descent, 0);
685     rb_define_method(Font, "glyphs", font_glyphs, 0);
686     rb_define_method(Font, "kerning", font_kerning, 0);
687     rb_define_method(Font, "get_kerning_table", font_kerning, 0);
688     
689     Device = rb_define_class_under(GFX, "Device", rb_cObject);
690     rb_define_method(Device, "startpage", noop, -1);
691     rb_define_method(Device, "endpage", noop, -1);
692     rb_define_method(Device, "startclip", noop, -1);
693     rb_define_method(Device, "endclip", noop, -1);
694     rb_define_method(Device, "stroke", noop, -1);
695     rb_define_method(Device, "fill", noop, -1);
696     rb_define_method(Device, "fillbitmap", noop, -1);
697     rb_define_method(Device, "fillgradient", noop, -1);
698     rb_define_method(Device, "addfont", noop, -1);
699     rb_define_method(Device, "drawchar", noop, -1);
700     rb_define_method(Device, "drawlink", noop, -1);
701     rb_define_method(Device, "endpage", noop, -1);
702
703     PDFClass = rb_define_class_under(GFX, "PDF", Document);
704     rb_define_alloc_func(PDFClass, pdf_allocate);
705     
706     SWFClass = rb_define_class_under(GFX, "SWF", Document);
707     rb_define_alloc_func(SWFClass, swf_allocate);
708     
709     ImageClass = rb_define_class_under(GFX, "ImageRead", Document);
710     rb_define_alloc_func(ImageClass, imgdrv_allocate);
711
712     id_setparameter = rb_intern("setparameter");
713     id_startpage = rb_intern("startpage") ;
714     id_startclip = rb_intern("startclip") ;
715     id_endclip = rb_intern("endclip") ;
716     id_stroke = rb_intern("stroke") ;
717     id_fill = rb_intern("fill") ;
718     id_fillbitmap = rb_intern("fillbitmap") ;
719     id_fillgradient = rb_intern("fillgradient") ;
720     id_addfont = rb_intern("addfont") ;
721     id_drawchar = rb_intern("drawchar") ;
722     id_drawlink = rb_intern("drawlink") ;
723     id_endpage = rb_intern("endpage") ;
724     id_geterror = rb_intern("geterror") ;
725     id_finish = rb_intern("finish") ;
726     id_butt = rb_intern("butt");
727     id_round = rb_intern("round");
728     id_square = rb_intern("square");
729     id_miter = rb_intern("miter");
730     id_bevel = rb_intern("bevel");
731     id_move = rb_intern("move");
732     id_line = rb_intern("line");
733     id_spline = rb_intern("spline");
734     id_radial = rb_intern("radial");
735     id_linear = rb_intern("linear");
736 }
737