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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
/* This file is part of the KDE project
* Copyright (C) 2009 Jan Hambrecht <jaham@gmx.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "SvgUtil.h"
#include "SvgGraphicContext.h"
#include <KoUnit.h>
#include <QString>
#include <QRectF>
#include <QStringList>
#include <math.h>
#define DPI 72.0
#define DEG2RAD(degree) degree/180.0*M_PI
double SvgUtil::fromUserSpace(double value)
{
return (value * DPI) / 90.0;
}
double SvgUtil::toUserSpace(double value)
{
return (value * 90.0) / DPI;
}
QPointF SvgUtil::toUserSpace(const QPointF &point)
{
return QPointF(toUserSpace(point.x()), toUserSpace(point.y()));
}
QRectF SvgUtil::toUserSpace(const QRectF &rect)
{
return QRectF(toUserSpace(rect.topLeft()), toUserSpace(rect.size()));
}
QSizeF SvgUtil::toUserSpace(const QSizeF &size)
{
return QSizeF(toUserSpace(size.width()), toUserSpace(size.height()));
}
double SvgUtil::toPercentage(QString s)
{
if (s.endsWith('%'))
return s.remove('%').toDouble();
else
return s.toDouble() * 100.0;
}
double SvgUtil::fromPercentage(QString s)
{
if (s.endsWith('%'))
return s.remove('%').toDouble() / 100.0;
else
return s.toDouble();
}
QPointF SvgUtil::objectToUserSpace(const QPointF &position, const QRectF &objectBound)
{
qreal x = objectBound.left() + position.x() * objectBound.width();
qreal y = objectBound.top() + position.y() * objectBound.height();
return QPointF(x, y);
}
QSizeF SvgUtil::objectToUserSpace(const QSizeF &size, const QRectF &objectBound)
{
qreal w = size.width() * objectBound.width();
qreal h = size.height() * objectBound.height();
return QSizeF(w, h);
}
QPointF SvgUtil::userSpaceToObject(const QPointF &position, const QRectF &objectBound)
{
qreal x = 0.0;
if (objectBound.width() != 0)
x = (position.x() - objectBound.x()) / objectBound.width();
qreal y = 0.0;
if (objectBound.height() != 0)
y = (position.y() - objectBound.y()) / objectBound.height();
return QPointF(x, y);
}
QSizeF SvgUtil::userSpaceToObject(const QSizeF &size, const QRectF &objectBound)
{
qreal w = objectBound.width() != 0 ? size.width() / objectBound.width() : 0.0;
qreal h = objectBound.height() != 0 ? size.height() / objectBound.height() : 0.0;
return QSizeF(w, h);
}
QTransform SvgUtil::parseTransform(const QString &transform)
{
QTransform result;
// Split string for handling 1 transform statement at a time
QStringList subtransforms = transform.split(')', QString::SkipEmptyParts);
QStringList::ConstIterator it = subtransforms.constBegin();
QStringList::ConstIterator end = subtransforms.constEnd();
for (; it != end; ++it) {
QStringList subtransform = (*it).simplified().split('(', QString::SkipEmptyParts);
if (subtransform.count() < 2)
continue;
subtransform[0] = subtransform[0].trimmed().toLower();
subtransform[1] = subtransform[1].simplified();
QRegExp reg("[,( ]");
QStringList params = subtransform[1].split(reg, QString::SkipEmptyParts);
if (subtransform[0].startsWith(';') || subtransform[0].startsWith(','))
subtransform[0] = subtransform[0].right(subtransform[0].length() - 1);
if (subtransform[0] == "rotate") {
if (params.count() == 3) {
double x = params[1].toDouble();
double y = params[2].toDouble();
result.translate(x, y);
result.rotate(params[0].toDouble());
result.translate(-x, -y);
} else {
result.rotate(params[0].toDouble());
}
} else if (subtransform[0] == "translate") {
if (params.count() == 2) {
result.translate(SvgUtil::fromUserSpace(params[0].toDouble()),
SvgUtil::fromUserSpace(params[1].toDouble()));
} else { // Spec : if only one param given, assume 2nd param to be 0
result.translate(SvgUtil::fromUserSpace(params[0].toDouble()) , 0);
}
} else if (subtransform[0] == "scale") {
if (params.count() == 2) {
result.scale(params[0].toDouble(), params[1].toDouble());
} else { // Spec : if only one param given, assume uniform scaling
result.scale(params[0].toDouble(), params[0].toDouble());
}
} else if (subtransform[0].toLower() == "skewx") {
result.shear(tan(DEG2RAD(params[0].toDouble())), 0.0F);
} else if (subtransform[0].toLower() == "skewy") {
result.shear(0.0F, tan(DEG2RAD(params[0].toDouble())));
} else if (subtransform[0] == "matrix") {
if (params.count() >= 6) {
result.setMatrix(params[0].toDouble(), params[1].toDouble(), 0,
params[2].toDouble(), params[3].toDouble(), 0,
SvgUtil::fromUserSpace(params[4].toDouble()),
SvgUtil::fromUserSpace(params[5].toDouble()), 1);
}
}
}
return result;
}
QString SvgUtil::transformToString(const QTransform &transform)
{
if (transform.isIdentity())
return QString();
if (transform.type() == QTransform::TxTranslate) {
return QString("translate(%1, %2)")
.arg(toUserSpace(transform.dx()))
.arg(toUserSpace(transform.dy()));
} else {
return QString("matrix(%1 %2 %3 %4 %5 %6)")
.arg(transform.m11()).arg(transform.m12())
.arg(transform.m21()).arg(transform.m22())
.arg(toUserSpace(transform.dx()))
.arg(toUserSpace(transform.dy()));
}
}
QRectF SvgUtil::parseViewBox(QString viewbox)
{
QRectF viewboxRect;
// this is a workaround for bug 260429 for a file generated by blender
// who has px in the viewbox which is wrong.
// reported as bug http://projects.blender.org/tracker/?group_id=9&atid=498&func=detail&aid=30971
viewbox.remove("px");
QStringList points = viewbox.replace(',', ' ').simplified().split(' ');
if (points.count() == 4) {
viewboxRect.setX(SvgUtil::fromUserSpace(points[0].toFloat()));
viewboxRect.setY(SvgUtil::fromUserSpace(points[1].toFloat()));
viewboxRect.setWidth(SvgUtil::fromUserSpace(points[2].toFloat()));
viewboxRect.setHeight(SvgUtil::fromUserSpace(points[3].toFloat()));
}
return viewboxRect;
}
qreal SvgUtil::parseUnit(SvgGraphicsContext *gc, const QString &unit, bool horiz, bool vert, const QRectF &bbox)
{
if (unit.isEmpty())
return 0.0;
QByteArray unitLatin1 = unit.toLatin1();
// TODO : percentage?
const char *start = unitLatin1.data();
if (!start) {
return 0.0;
}
qreal value = 0.0;
const char *end = parseNumber(start, value);
if (int(end - start) < unit.length()) {
if (unit.right(2) == "px")
value = SvgUtil::fromUserSpace(value);
else if (unit.right(2) == "cm")
value = CM_TO_POINT(value);
else if (unit.right(2) == "pc")
value = PI_TO_POINT(value);
else if (unit.right(2) == "mm")
value = MM_TO_POINT(value);
else if (unit.right(2) == "in")
value = INCH_TO_POINT(value);
else if (unit.right(2) == "em")
value = value * gc->font.pointSize();
else if (unit.right(2) == "ex") {
QFontMetrics metrics(gc->font);
value = value * metrics.xHeight();
} else if (unit.right(1) == "%") {
if (horiz && vert)
value = (value / 100.0) * (sqrt(pow(bbox.width(), 2) + pow(bbox.height(), 2)) / sqrt(2.0));
else if (horiz)
value = (value / 100.0) * bbox.width();
else if (vert)
value = (value / 100.0) * bbox.height();
}
} else {
value = SvgUtil::fromUserSpace(value);
}
/*else
{
if( m_gc.top() )
{
if( horiz && vert )
value *= sqrt( pow( m_gc.top()->matrix.m11(), 2 ) + pow( m_gc.top()->matrix.m22(), 2 ) ) / sqrt( 2.0 );
else if( horiz )
value /= m_gc.top()->matrix.m11();
else if( vert )
value /= m_gc.top()->matrix.m22();
}
}*/
//value *= 90.0 / DPI;
return value;
}
qreal SvgUtil::parseUnitX(SvgGraphicsContext *gc, const QString &unit)
{
if (gc->forcePercentage) {
return SvgUtil::fromPercentage(unit) * gc->currentBoundbox.width();
} else {
return SvgUtil::parseUnit(gc, unit, true, false, gc->currentBoundbox);
}
}
qreal SvgUtil::parseUnitY(SvgGraphicsContext *gc, const QString &unit)
{
if (gc->forcePercentage) {
return SvgUtil::fromPercentage(unit) * gc->currentBoundbox.height();
} else {
return SvgUtil::parseUnit(gc, unit, false, true, gc->currentBoundbox);
}
}
qreal SvgUtil::parseUnitXY(SvgGraphicsContext *gc, const QString &unit)
{
if (gc->forcePercentage) {
const qreal value = SvgUtil::fromPercentage(unit);
return value * sqrt(pow(gc->currentBoundbox.width(), 2) + pow(gc->currentBoundbox.height(), 2)) / sqrt(2.0);
} else {
return SvgUtil::parseUnit(gc, unit, true, true, gc->currentBoundbox);
}
}
const char * SvgUtil::parseNumber(const char *ptr, qreal &number)
{
int integer, exponent;
qreal decimal, frac;
int sign, expsign;
exponent = 0;
integer = 0;
frac = 1.0;
decimal = 0;
sign = 1;
expsign = 1;
// read the sign
if (*ptr == '+') {
ptr++;
} else if (*ptr == '-') {
ptr++;
sign = -1;
}
// read the integer part
while (*ptr != '\0' && *ptr >= '0' && *ptr <= '9')
integer = (integer * 10) + *(ptr++) - '0';
if (*ptr == '.') { // read the decimals
ptr++;
while (*ptr != '\0' && *ptr >= '0' && *ptr <= '9')
decimal += (*(ptr++) - '0') * (frac *= 0.1);
}
if (*ptr == 'e' || *ptr == 'E') { // read the exponent part
ptr++;
// read the sign of the exponent
if (*ptr == '+') {
ptr++;
} else if (*ptr == '-') {
ptr++;
expsign = -1;
}
exponent = 0;
while (*ptr != '\0' && *ptr >= '0' && *ptr <= '9') {
exponent *= 10;
exponent += *ptr - '0';
ptr++;
}
}
number = integer + decimal;
number *= sign * pow((double)10, double(expsign * exponent));
return ptr;
}
|