1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
'''
* Copyright (C) 2007-2008, Gian Mario Tagliaretti
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
'''
import gtk
import poppler
import sys
import cairo
class Poprender(object):
def __init__(self):
uri = "file://" + sys.argv[1]
self.document = poppler.document_new_from_file (uri, None)
self.n_pages = self.document.get_n_pages()
self.current_page = self.document.get_page(0)
self.scale = 1
self.width, self.height = self.current_page.get_size()
win = gtk.Window(gtk.WINDOW_TOPLEVEL)
win.set_default_size(600, 600)
win.set_title ("Poppler GLib Demo")
win.connect("delete-event", gtk.main_quit)
adjust = gtk.Adjustment(0, 0, self.n_pages -1, 1)
page_selector = gtk.SpinButton(adjust, 0, 0);
page_selector.connect("value-changed", self.on_changed)
lab = gtk.Label('Page Number:')
hbox = gtk.HBox(False, 0)
vbox = gtk.VBox(False, 0)
vbox.pack_start(hbox, False, False, 0)
hbox.pack_start(lab, False, False, 4)
hbox.pack_start(page_selector, False, False, 0)
adjust = gtk.Adjustment(1, 1, 5, 1)
scale_selector = gtk.SpinButton(adjust, 0, 0);
scale_selector.connect("value-changed", self.on_scale_changed)
lab = gtk.Label('Scale:')
hbox.pack_start(lab, False, False, 4)
hbox.pack_start(scale_selector, False, False, 0)
b_scan_fonts = gtk.Button('Scan Fonts')
b_scan_fonts.connect("clicked", self.on_scan_fonts)
hbox.pack_start(b_scan_fonts, False, False, 4)
sw = gtk.ScrolledWindow()
sw.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
self.dwg = gtk.DrawingArea()
self.dwg.set_size_request(int(self.width), int(self.height))
self.dwg.connect("expose-event", self.on_expose)
sw.add_with_viewport(self.dwg)
vbox.pack_start(sw, True, True, 0)
win.add(vbox)
win.show_all()
def on_changed(self, widget):
self.current_page = self.document.get_page(widget.get_value_as_int())
self.dwg.set_size_request(int(self.width)*self.scale,
int(self.height)*self.scale)
self.dwg.queue_draw()
def on_scale_changed(self, widget):
self.scale = widget.get_value_as_int()
self.dwg.set_size_request(int(self.width)*self.scale,
int(self.height)*self.scale)
self.dwg.queue_draw()
def on_expose(self, widget, event):
cr = widget.window.cairo_create()
cr.set_source_rgb(1, 1, 1)
if self.scale != 1:
cr.scale(self.scale, self.scale)
cr.rectangle(0, 0, self.width, self.height)
cr.fill()
self.current_page.render(cr)
def on_scan_fonts(self, widget):
font_info = poppler.FontInfo(self.document)
iter = font_info.scan(self.n_pages)
print iter.get_full_name()
while iter.next():
print iter.get_full_name()
def main(self):
gtk.main()
if __name__ == '__main__':
pop = Poprender()
pop.main()
|