mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
342 lines
17 KiB
C++
342 lines
17 KiB
C++
|
/** \example jkqtmathtext_render.cpp
|
||
|
* A very basic example for the usage of JKQTMathText
|
||
|
*
|
||
|
* \ref JKQTMathTextRenderCmdLineTool
|
||
|
|
||
|
*/
|
||
|
|
||
|
#include <QApplication>
|
||
|
#include <QPixmap>
|
||
|
#include <QPainter>
|
||
|
#include <QCommandLineParser>
|
||
|
#include <QCommandLineOption>
|
||
|
#include <QElapsedTimer>
|
||
|
#include <QFile>
|
||
|
#include <QDir>
|
||
|
#if (QT_VERSION>=QT_VERSION_CHECK(6, 0, 0))
|
||
|
#include<QRegularExpression>
|
||
|
#include<QRegularExpressionMatch>
|
||
|
#else
|
||
|
#include<QRegExp>
|
||
|
#endif
|
||
|
#include "jkqtmathtext/jkqtmathtextlabel.h"
|
||
|
#include "jkqtcommon/jkqtpstringtools.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
void processFont(const QString font, QStringList& fonts, QString& mathFont)
|
||
|
{
|
||
|
fonts.clear();
|
||
|
mathFont="";
|
||
|
QString current="";
|
||
|
bool isExtra=false;
|
||
|
for (int i=0; i<font.size(); i++) {
|
||
|
if (font[i]==',') {
|
||
|
fonts.push_back(current);
|
||
|
current="";
|
||
|
} else if (font[i]=='+') {
|
||
|
fonts.push_back(current);
|
||
|
isExtra=true;
|
||
|
current="";
|
||
|
} else {
|
||
|
if (isExtra) {
|
||
|
mathFont+=font[i];
|
||
|
} else {
|
||
|
current+=font[i];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
if (current.size()>0) {
|
||
|
fonts.append(current);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
// 1. create Qt Appcilation object and a QCommandLineParser to go with it
|
||
|
QApplication app(argc, argv);
|
||
|
QCommandLineParser parser;
|
||
|
parser.setApplicationDescription("JKQTMathText command line tool that renders LaTeX markup into an image");
|
||
|
parser.addHelpOption();
|
||
|
parser.addVersionOption();
|
||
|
parser.addPositionalArgument("latex", "LaTeX markup to be rendered");
|
||
|
parser.addPositionalArgument("output", "output image file (extensions determines file type)");
|
||
|
QCommandLineOption inputfileOption("inputfile", "read from a file instead of from command line.", "inputfile", "");
|
||
|
parser.addOption(inputfileOption);
|
||
|
QCommandLineOption outputDirectoryOption("outputdir", "write results into this directory.", "outputdir", app.applicationDirPath());
|
||
|
parser.addOption(outputDirectoryOption);
|
||
|
QCommandLineOption drawBoxesOption("drawboxes", "draw boxes.");
|
||
|
parser.addOption(drawBoxesOption);
|
||
|
QCommandLineOption verboseOption("verbose", "verbose output.");
|
||
|
parser.addOption(verboseOption);
|
||
|
QCommandLineOption fontOption("font", "font( size)s) to use.", "font", "XITS");
|
||
|
parser.addOption(fontOption);
|
||
|
QCommandLineOption fontsizeOption("fontsize", "font size.", "fontsize", "12");
|
||
|
parser.addOption(fontsizeOption);
|
||
|
QCommandLineOption fontBlackboardSimOption("fontblackboardsimulated", "set the blackboard font and activate simulated-mode.", "fontblackboardsimulated", "");
|
||
|
parser.addOption(fontBlackboardSimOption);
|
||
|
QCommandLineOption fontRomanOption("fontroman", "set the text-mode roman font to use.", "fontroman", "");
|
||
|
parser.addOption(fontRomanOption);
|
||
|
QCommandLineOption fontSansOption("fontsans", "set the text-mode sans font to use.", "fontsans", "");
|
||
|
parser.addOption(fontSansOption);
|
||
|
QCommandLineOption fontMathRomanOption("fontmathroman", "set the math-mode roman font to use.", "fontmathroman", "");
|
||
|
parser.addOption(fontMathRomanOption);
|
||
|
QCommandLineOption fontMathSansOption("fontmathsans", "set the math-mode sans font to use.", "fontmathsans", "");
|
||
|
parser.addOption(fontMathSansOption);
|
||
|
QCommandLineOption fontFallbackSymbolOption("fontfallbacksymbol", "set the fallback symbol font to use.", "fontfallbacksymbol", "");
|
||
|
parser.addOption(fontFallbackSymbolOption);
|
||
|
QCommandLineOption fontFallbackSymbol_symbolencodingOption("fontfallbacksymbol_symbolencoding", "set the fallback symbol font to use and use the encoding of the MS Symbol font for it.", "fontfallbacksymbol_symbolencoding", "");
|
||
|
parser.addOption(fontFallbackSymbol_symbolencodingOption);
|
||
|
QCommandLineOption fontTypewriterOption("fonttypewriter", "set the typewriter font to use.", "fonttypewriter", "");
|
||
|
parser.addOption(fontTypewriterOption);
|
||
|
QCommandLineOption fontScriptOption("fontscript", "set the Script font to use.", "fontscript", "");
|
||
|
parser.addOption(fontScriptOption);
|
||
|
QCommandLineOption fontFrakturOption("fontfraktur", "set the Fraktur font to use.", "fontfraktur", "");
|
||
|
parser.addOption(fontFrakturOption);
|
||
|
QCommandLineOption fontcaligraphicOption("fontcaligraphic", "set the caligraphic font to use.", "fontcaligraphic", "");
|
||
|
parser.addOption(fontcaligraphicOption);
|
||
|
QCommandLineOption fontblackboardOption("fontblackboard", "set the blackboard font to use.", "fontblackboard", "");
|
||
|
parser.addOption(fontblackboardOption);
|
||
|
QCommandLineOption textcolorOption("textcolor", "set the color of the text.", "textcolor", "black");
|
||
|
parser.addOption(textcolorOption);
|
||
|
QCommandLineOption sizeincreaseOption("sizeincrease", "additional pixels around output.", "sizeincrease", "2");
|
||
|
parser.addOption(sizeincreaseOption);
|
||
|
QCommandLineOption resolutionOption("resolution", "set output image resolution in DPI.", "resolution", "96");
|
||
|
parser.addOption(resolutionOption);
|
||
|
QCommandLineOption backgroundOption("background", "background color.", "background", "white");
|
||
|
parser.addOption(backgroundOption);
|
||
|
parser.process(app);
|
||
|
|
||
|
const QStringList args = parser.positionalArguments();
|
||
|
const QString latex_cmdline=args.value(0, "$x_{1/2}=\\frac{-b\\pm\\sqrt{b^2-4ac}}{2a}$");
|
||
|
const QDir outputDir(parser.value(outputDirectoryOption));
|
||
|
const QString outputFilename_cmdline=outputDir.absoluteFilePath(args.value(1, "output.png"));
|
||
|
const QString inputfile=parser.value(inputfileOption);
|
||
|
const bool verbose = parser.isSet(verboseOption);
|
||
|
|
||
|
QStringList latex, outputFilename;
|
||
|
QList<QMap<QString,QString>> cmdoptions;
|
||
|
if (inputfile.size()<=0) {
|
||
|
latex.append(latex_cmdline);
|
||
|
outputFilename.append(outputFilename_cmdline);
|
||
|
cmdoptions.append(QMap<QString,QString>());
|
||
|
} else {
|
||
|
QFile f(inputfile);
|
||
|
if (f.open(QFile::ReadOnly|QFile::Text)) {
|
||
|
QString currentOutFile="";
|
||
|
QString currentLatex="";
|
||
|
QMap<QString,QString> currentOptions;
|
||
|
bool isFile=true;
|
||
|
bool beforeLatex=true;
|
||
|
while (!f.atEnd()) {
|
||
|
const QString line=f.readLine().trimmed();
|
||
|
const QString line_simple=line.simplified();
|
||
|
if (line_simple=="---" || line_simple=="###") {
|
||
|
if (currentOutFile.size()>0) {
|
||
|
outputFilename.append(currentOutFile);
|
||
|
latex.append(currentLatex);
|
||
|
cmdoptions.append(currentOptions);
|
||
|
isFile=true;
|
||
|
beforeLatex=true;
|
||
|
currentLatex="";
|
||
|
currentOutFile="";
|
||
|
currentOptions.clear();
|
||
|
}
|
||
|
} else if (isFile) {
|
||
|
currentOutFile=line;
|
||
|
isFile=false;
|
||
|
} else if (beforeLatex) {
|
||
|
if (line.startsWith("--")) {
|
||
|
QStringList commands=line.right(line.size()-2).split("--");
|
||
|
for (QString cmd: commands) {
|
||
|
cmd=cmd.trimmed();
|
||
|
QString cmdn="", param="";
|
||
|
bool iscmd=true;
|
||
|
for (const QChar& ch: cmd) {
|
||
|
if (iscmd) {
|
||
|
if (ch=='=') {
|
||
|
iscmd=false;
|
||
|
} else {
|
||
|
cmdn+=ch;
|
||
|
}
|
||
|
} else {
|
||
|
param+=ch;
|
||
|
}
|
||
|
}
|
||
|
currentOptions[cmdn.trimmed()]=param.trimmed();
|
||
|
}
|
||
|
} else {
|
||
|
if (currentLatex.size()>0) currentLatex+="\n";
|
||
|
currentLatex+=line;
|
||
|
}
|
||
|
beforeLatex=false;
|
||
|
} else {
|
||
|
if (currentLatex.size()>0) currentLatex+="\n";
|
||
|
currentLatex+=line;
|
||
|
}
|
||
|
}
|
||
|
f.close();
|
||
|
if (currentOutFile.size()>0) {
|
||
|
outputFilename.append(currentOutFile);
|
||
|
latex.append(currentLatex);
|
||
|
cmdoptions.append(currentOptions);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
if (verbose) {
|
||
|
std::cout
|
||
|
<<"===========================================================\n"
|
||
|
<<"= jkqtmathtext_render: ";
|
||
|
if (inputfile.size()>0) std::cout<<"FILE-MODE ("<<inputfile.toStdString()<<")\n";
|
||
|
else std::cout<<"COMMAND-LINE-MODE\n";
|
||
|
std::cout<<"\n"
|
||
|
<<"===========================================================\n";
|
||
|
}
|
||
|
|
||
|
|
||
|
for (int i=0; i<latex.size(); i++) {
|
||
|
if (inputfile.size()>0 && verbose) {
|
||
|
std::cout<<"\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"
|
||
|
<<"+ processing entry "<<(i+1)<<"/"<<latex.size()<<"\n";
|
||
|
if (cmdoptions[i].size()>0) {
|
||
|
std::cout<<"+ additional command-line options: ";
|
||
|
for (const QString& key: cmdoptions[i].keys()) {
|
||
|
std::cout<<" --"<<key.toStdString()<<"="<<cmdoptions[i].value(key).toStdString();
|
||
|
}
|
||
|
std::cout<<"\n";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
QStringList fonts;
|
||
|
QString mathFont="";
|
||
|
processFont(parser.value(fontOption), fonts, mathFont);
|
||
|
bool drawBoxes = parser.isSet(drawBoxesOption);
|
||
|
double fontsize = parser.value(fontsizeOption).toDouble();
|
||
|
int sizeincrease = parser.value(sizeincreaseOption).toInt();
|
||
|
int resolution_dpi = parser.value(resolutionOption).toInt();
|
||
|
QColor backgroundColor = jkqtp_String2QColor(parser.value(backgroundOption));
|
||
|
QColor textColor = jkqtp_String2QColor(parser.value(textcolorOption));
|
||
|
QString fontBlackboardSim = parser.value(fontBlackboardSimOption);
|
||
|
QString fontBlackboard=parser.value(fontblackboardOption);
|
||
|
QString fontRoman=parser.value(fontRomanOption);
|
||
|
QString fontSans=parser.value(fontSansOption);
|
||
|
QString fontMathRoman=parser.value(fontMathRomanOption);
|
||
|
QString fontMathSans=parser.value(fontMathSansOption);
|
||
|
QString fontFallbackSymbol=parser.value(fontFallbackSymbolOption);
|
||
|
QString fontFallbackSymbol_symbolencoding=parser.value(fontFallbackSymbol_symbolencodingOption);
|
||
|
QString fontTypewriter=parser.value(fontTypewriterOption);
|
||
|
QString fontScript=parser.value(fontScriptOption);
|
||
|
QString fontFraktur=parser.value(fontFrakturOption);
|
||
|
QString fontCaligraphic=parser.value(fontcaligraphicOption);
|
||
|
|
||
|
if (cmdoptions[i].size()>0) {
|
||
|
for (const QString& key: cmdoptions[i].keys()) {
|
||
|
if (key=="drawboxes") drawBoxes=true;
|
||
|
else if (key=="fontsize") fontsize=cmdoptions[i].value(key).toDouble();
|
||
|
else if (key=="sizeincrease") sizeincrease=cmdoptions[i].value(key).toInt();
|
||
|
else if (key=="background") backgroundColor=jkqtp_String2QColor(cmdoptions[i].value(key));
|
||
|
else if (key=="textcolor") textColor=jkqtp_String2QColor(cmdoptions[i].value(key));
|
||
|
else if (key=="fontblackboardsimulated") fontBlackboardSim=cmdoptions[i].value(key);
|
||
|
else if (key=="fontblackboard") fontBlackboard=cmdoptions[i].value(key);
|
||
|
else if (key=="font") processFont(cmdoptions[i].value(key), fonts, mathFont);
|
||
|
else if (key=="fontroman") fontRoman=cmdoptions[i].value(key);
|
||
|
else if (key=="fontsans") fontSans=cmdoptions[i].value(key);
|
||
|
else if (key=="fontmathroman") fontMathRoman=cmdoptions[i].value(key);
|
||
|
else if (key=="fontmathsans") fontMathSans=cmdoptions[i].value(key);
|
||
|
else if (key=="fonttypewriter") fontTypewriter=cmdoptions[i].value(key);
|
||
|
else if (key=="fontfallbacksymbol") fontFallbackSymbol=cmdoptions[i].value(key);
|
||
|
else if (key=="fontfallbacksymbol_symbolencoding") fontFallbackSymbol_symbolencoding=cmdoptions[i].value(key);
|
||
|
else if (key=="fontscript") fontScript=cmdoptions[i].value(key);
|
||
|
else if (key=="fontcaligraphic") fontCaligraphic=cmdoptions[i].value(key);
|
||
|
else if (key=="fontfraktur") fontFraktur=cmdoptions[i].value(key);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 2. now we create a JKQTMathText object and configure it
|
||
|
JKQTMathText mathText;
|
||
|
if (fonts.size()==1) {
|
||
|
mathText.useAnyUnicode(fonts[0], mathText.getFontSans());
|
||
|
} else if (fonts.size()==2) {
|
||
|
mathText.useAnyUnicode(fonts[0], fonts[1]);
|
||
|
} else if (fonts.size()==4) {
|
||
|
mathText.useAnyUnicodeForTextOnly(fonts[0], fonts[1]);
|
||
|
mathText.useAnyUnicodeForMathOnly(fonts[2], fonts[3]);
|
||
|
}
|
||
|
if (mathFont.toUpper() == "XITS") mathText.useXITS(true);
|
||
|
else if (mathFont.toUpper() == "XITS_MATHANDTEXT") mathText.useXITS(false);
|
||
|
if (mathFont.toUpper() == "STIX") mathText.useSTIX(true);
|
||
|
else if (mathFont.toUpper() == "STIX_MATHANDTEXT") mathText.useSTIX(false);
|
||
|
if (mathFont.toUpper() == "ASANA") mathText.useASANA(true);
|
||
|
else if (mathFont.toUpper() == "ASANA_MATHANDTEXT") mathText.useASANA(false);
|
||
|
if (fontRoman.size()>0) mathText.setFontRoman(fontRoman, MTFEUnicode);
|
||
|
if (fontSans.size()>0) mathText.setFontSans(fontSans, MTFEUnicode);
|
||
|
if (fontMathRoman.size()>0) {
|
||
|
if (fontMathRoman.toUpper()=="XITS") mathText.useXITS(true);
|
||
|
else if (fontMathRoman.toUpper()=="STIX") mathText.useSTIX(true);
|
||
|
else if (fontMathRoman.toUpper()=="ASANA") mathText.useASANA(true);
|
||
|
else mathText.setFontMathRoman(fontMathRoman, MTFEUnicode);
|
||
|
}
|
||
|
if (fontMathSans.size()>0) mathText.setFontMathSans(fontMathSans, MTFEUnicode);
|
||
|
if (fontTypewriter.size()>0) mathText.setFontTypewriter(fontTypewriter, MTFEUnicode);
|
||
|
if (fontScript.size()>0) mathText.setFontScript(fontScript, MTFEUnicode);
|
||
|
if (fontCaligraphic.size()>0) mathText.setFontCaligraphic(fontCaligraphic, MTFEUnicode);
|
||
|
if (fontFraktur.size()>0) mathText.setFontFraktur(fontFraktur, MTFEUnicode);
|
||
|
if (fontFallbackSymbol.size()>0) mathText.setFallbackFontSymbols(fontFallbackSymbol, MTFEUnicode);
|
||
|
if (fontFallbackSymbol_symbolencoding.size()>0) mathText.setFallbackFontSymbols(fontFallbackSymbol_symbolencoding, MTFEWinSymbol);
|
||
|
|
||
|
if (fontBlackboardSim.size()>0) {
|
||
|
mathText.setFontBlackboard(fontBlackboardSim, MTFEUnicode);
|
||
|
mathText.setFontBlackboardSimulated(true);
|
||
|
}
|
||
|
if (fontBlackboard.size()>0) {
|
||
|
mathText.setFontBlackboard(fontBlackboard, MTFEUnicode);
|
||
|
mathText.setFontBlackboardSimulated(false);
|
||
|
}
|
||
|
mathText.setFontSize(fontsize);
|
||
|
mathText.setFontColor(textColor);
|
||
|
|
||
|
// 3. now we parse some LaTeX code
|
||
|
QElapsedTimer timer;
|
||
|
timer.start();
|
||
|
mathText.parse(latex[i]);
|
||
|
const double durParseMS=static_cast<double>(timer.nsecsElapsed())/1.0e6;
|
||
|
if (mathText.hadErrors()) {
|
||
|
std::cerr<<"ERRORS while parsing LaTeX:\n"
|
||
|
<<"-----------------------------------------------------------\n"
|
||
|
<<latex[i].toStdString()<<"\n"
|
||
|
<<"-----------------------------------------------------------\n"
|
||
|
<<mathText.getErrorList().join("\n").toStdString()<<"\n"
|
||
|
<<"-----------------------------------------------------------\n"
|
||
|
;
|
||
|
} else if (verbose) {
|
||
|
std::cout<<"parsing LaTeX: OK\n"
|
||
|
<<"parsing duration: "<<durParseMS<<"ms\n"
|
||
|
<<"-----------------------------------------------------------\n"
|
||
|
<<latex[i].toStdString()<<"\n"
|
||
|
<<"-----------------------------------------------------------\n";
|
||
|
}
|
||
|
|
||
|
// 4. now we draw the result into a QPixmap
|
||
|
timer.start();
|
||
|
const QImage pix=mathText.drawIntoImage(drawBoxes, backgroundColor, sizeincrease, 1.0, resolution_dpi);
|
||
|
const double durRenderMS=static_cast<double>(timer.nsecsElapsed())/1.0e6;
|
||
|
if (verbose) std::cout<<"rendering into QImage "<<pix.width()<<"x"<<pix.height()<<"pixels\n"
|
||
|
<<"rendering duration: "<<durRenderMS<<"ms\n"
|
||
|
<<"rendering resolution: "<<pix.dotsPerMeterX()/(1000.0/25.4)<<"x"<<pix.dotsPerMeterY()/(1000.0/25.4)<<"dpi\n"
|
||
|
<<"devicepixelratio: "<<pix.devicePixelRatioF()<<"\n"
|
||
|
;
|
||
|
|
||
|
// 5. before ending the application, we store the result into a file
|
||
|
const QString outname=outputDir.absoluteFilePath(outputFilename[i]);
|
||
|
if (QFileInfo::exists(outname)) QFile::remove(outname);
|
||
|
if (!pix.save(outname)) {
|
||
|
std::cerr<<"ERROR storing to "<<outname.toStdString()<<"\n";
|
||
|
} else {
|
||
|
if (verbose) std::cout<<"stored to "<<outname.toStdString()<<"\n"
|
||
|
<<" size "<<static_cast<double>(QFileInfo(outname).size())/1024.0<<"kBytes\n";
|
||
|
}
|
||
|
}
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|