remove text size hack. Not so efficient

preferencesAboutTextFull
Claudio Valerio 13 years ago
parent aba0f8a6e0
commit ea9217ad0e
  1. 17
      src/adaptors/UBSvgSubsetAdaptor.cpp

@ -2266,20 +2266,9 @@ void UBSvgSubsetAdaptor::UBSvgSubsetWriter::textItemToSvg(UBGraphicsTextItem* it
//for new documents from version 4.5.0 //for new documents from version 4.5.0
mXmlWriter.writeStartElement("itemTextContent"); mXmlWriter.writeStartElement("itemTextContent");
//TODO: // Note: don't use mXmlWriter.writeCDATA(htmlString); because it doesn't escape characters sequences correctly.
// This is only a workaround that works quite well. The font sizes are expressed on // Texts copied from other programs like Open-Office can truncate the svg file.
// px instead of pt because px is less sensitive to the physicalDPI of the Os. The mXmlWriter.writeCharacters(item->toHtml());
// main problem in fact appears when the file is used on another platform than the
// one used to create it.
// But a different solution has to be implemented to avoid some annoying case that
// are already present with this hack.
QString htmlString = item->toHtml();
qDebug() << htmlString;
QRegExp regExp("font-size:([0-9]{,3})pt");
htmlString = htmlString.replace(regExp,"font-size:\\1px");
qDebug() << htmlString;
//mXmlWriter.writeCDATA(htmlString);
mXmlWriter.writeCharacters(htmlString);
mXmlWriter.writeEndElement(); //itemTextContent mXmlWriter.writeEndElement(); //itemTextContent
mXmlWriter.writeEndElement(); //foreignObject mXmlWriter.writeEndElement(); //foreignObject

Loading…
Cancel
Save