2 * @brief Extract text from an SVG file.
4 /* Copyright (C) 2010,2011 Olly Betts
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "stringutils.h"
29 SvgParser::process_text(const string
&text
)
31 string
* target
= NULL
;
45 case METADATA
: case OTHER
:
46 // Ignore context in other places.
55 SvgParser::opening_tag(const string
&tag
)
61 else if (tag
== "metadata")
65 // Ignore nested "dc:" tags - for example dc:title is also used to
66 // specify the creator's name inside dc:creator.
67 if (dc_tag
.empty() && startswith(tag
, "dc:")) {
69 if (tag
== "dc:title")
71 else if (tag
== "dc:subject")
73 else if (tag
== "dc:creator")
77 case KEYWORDS
: case TEXT
: case TITLE
: case AUTHOR
:
78 // Avoid compiler warnings.
85 SvgParser::closing_tag(const string
&tag
)
87 if (tag
== "text" || tag
== "metadata") {
89 } else if (tag
== dc_tag
) {