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
|
#!/usr/bin/env python3
# coding=utf-8
#
# Copyright (C) 2012 Jabiertxo Arraiza, jabier.arraiza@marker.es
# Copyright (C) 2016 su_v, <suv-sf@users.sf.net>
#
# 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 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""Document information"""
import inkex
from inkex.localization import (
inkex_gettext as _,
inkex_fgettext as _f,
inkex_pgettext as pgettext,
)
import inkex.localization
class DocInfo(inkex.EffectExtension):
"""Show document information"""
def effect(self):
namedview = self.svg.namedview
self.msg(pgettext("Docinfo Extension", ":::SVG document related info:::"))
self.msg(
_f(
"version: {}",
self.svg.get("inkscape:version", _("New Document (unsaved)")),
)
)
self.msg(
pgettext("Docinfo Extension", "width: {}").format(self.svg.viewport_width)
)
self.msg(
pgettext("Docinfo Extension", "height: {}").format(self.svg.viewport_height)
)
self.msg(
pgettext("Docinfo Extension", "viewbox: {}").format(
str(self.svg.get_viewbox())
)
)
self.msg(
pgettext("Docinfo Extension", "document-units: {}").format(
namedview.get("inkscape:document-units", "None")
)
)
self.msg(
pgettext("Docinfo Extension", "units: ") + namedview.get("units", "None")
)
self.msg(_f("Document has {} guides", len(namedview.get_guides())))
for i, grid in enumerate(namedview.findall("inkscape:grid")):
self.msg(_f("Grid number {}: Units: {}", i + 1, grid.get("units", "None")))
if len(namedview.get_pages()) > 1:
self.msg(_f("Document has {} pages", len(namedview.get_pages())))
for i, page in enumerate(namedview.get_pages()):
self.msg(
_f(
"Page number {}: x: {} y: {} width: {} height: {}",
i + 1,
page.get("x"),
page.get("y"),
page.get("width"),
page.get("height"),
)
)
else:
self.msg(_("This is a single page document."))
if __name__ == "__main__":
DocInfo().run()
|