qucs_s/qucs/imagewriter.cpp

262 lines
7.3 KiB
C++
Raw Normal View History

/*
* imagewriter.cpp - implementation of writer to image
*
* Copyright (C) 2014, Yodalee, lc85301@gmail.com
*
* This file is part of Qucs
*
* Qucs 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, or (at your option)
* any later version.
*
* This software 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 Qucs. If not, see <http://www.gnu.org/licenses/>.
*
*/
2014-11-24 21:14:30 +08:00
#include "schematic.h"
#include "imagewriter.h"
2014-11-24 21:14:30 +08:00
#include "dialogs/exportdialog.h"
#include <QMargins>
2014-11-24 21:14:30 +08:00
#include <QtSvg>
2015-03-24 11:46:36 +03:00
ImageWriter::ImageWriter(QString lastfile)
{
2014-11-24 21:14:30 +08:00
onlyDiagram = false;
2015-03-24 11:46:36 +03:00
lastExportFilename = lastfile;
}
ImageWriter::~ImageWriter()
{
}
2014-11-25 00:31:12 +08:00
void
2023-01-15 01:17:09 +03:00
ImageWriter::noGuiPrint(QWidget *doc, const QString& printFile, const QString& color)
2014-11-25 00:31:12 +08:00
{
2023-01-15 01:17:09 +03:00
Schematic *sch = dynamic_cast<Schematic*>(doc);
const QMargins bourder{30, 30, 30, 30};
QRect schematic_bounding_rect = sch->allBoundingRect();
2014-11-25 00:31:12 +08:00
if (printFile.endsWith(".svg") || printFile.endsWith(".eps")) {
QSvgGenerator* svg1 = new QSvgGenerator();
QString tempfile = printFile + ".tmp.svg";
if (!printFile.endsWith(".svg")) {
svg1->setFileName(tempfile);
} else {
svg1->setFileName(printFile);
}
svg1->setSize(schematic_bounding_rect.size());
2014-11-25 00:31:12 +08:00
QPainter *p = new QPainter(svg1);
sch->print(nullptr, p, true, true, bourder);
2014-11-25 00:31:12 +08:00
delete p;
delete svg1;
if (!printFile.endsWith(".svg")) {
2022-02-24 23:16:43 +01:00
QString cmd = "inkscape";
QStringList args;
args<<"-z"<<"-D";
QString tmpf = "--file=" + tempfile;
args<<tmpf;
2014-11-25 00:31:12 +08:00
if (printFile.endsWith(".eps")) {
2022-02-24 23:16:43 +01:00
QString pf = "--export-eps=" + printFile;
args<<pf;
2014-11-25 00:31:12 +08:00
}
2022-02-24 23:16:43 +01:00
int result = QProcess::execute(cmd,args);
2014-11-25 00:31:12 +08:00
if (result!=0) {
QMessageBox* msg = new QMessageBox(QMessageBox::Critical,"Export to image", "Inkscape start error!", QMessageBox::Ok);
msg->exec();
delete msg;
}
QFile::remove(tempfile);
}
} else if (printFile.endsWith(".png")) {
QImage* img;
if (color == "BW") {
img = new QImage(schematic_bounding_rect.size(), QImage::Format_Mono);
2014-11-25 00:31:12 +08:00
} else {
img = new QImage(schematic_bounding_rect.size(), QImage::Format_RGB888);
2014-11-25 00:31:12 +08:00
}
QPainter* p = new QPainter(img);
sch->print(nullptr, p, true, true, bourder);
2014-11-25 00:31:12 +08:00
img->save(printFile);
delete p;
delete img;
} else {
fprintf(stderr, "Unsupported format of output file. \n"
"Use PNG, SVG or PDF format!\n");
return;
}
}
2015-03-24 11:46:36 +03:00
QString ImageWriter::getLastSavedFile()
{
return lastExportFilename;
}
// FIXME: should check if filename exists and not silently overwrite
int ImageWriter::print(QWidget *doc)
{
2023-01-15 01:17:09 +03:00
Schematic *sch = dynamic_cast<Schematic*>(doc);
2014-11-24 21:14:30 +08:00
const int border = 30;
int status = -1;
2014-11-24 21:14:30 +08:00
QRect all = sch->allBoundingRect().marginsAdded(QMargins{30, 30, 30, 30});
int w = all.width();
int h = all.height();
2014-11-24 21:14:30 +08:00
2025-02-09 09:11:22 +01:00
QRect selected = sch->currentSelection().bounds;
int wsel = selected.width();
int hsel = selected.height();
2014-11-24 21:14:30 +08:00
ExportDialog *dlg = new ExportDialog(
w, h, wsel, hsel, lastExportFilename, selected.isNull(), 0);
2014-11-24 21:14:30 +08:00
if (onlyDiagram) {
dlg->setDiagram();
}
if (dlg->exec()) {
QString filename = dlg->FileToSave();
if (QFile::exists(filename)) {
int r = QMessageBox::question(0, QObject::tr("Overwrite"),
QObject::tr("File \"%1\" already exists.\nOverwrite ?")
.arg(filename),
QMessageBox::Yes|QMessageBox::No);
if (r == QMessageBox::No) {
delete dlg;
return -1;
}
}
2014-11-24 21:14:30 +08:00
lastExportFilename = filename;
bool exportAll = !dlg->isExportSelected();
if (!exportAll) {
2014-11-24 21:14:30 +08:00
w = wsel;
h = hsel;
}
if (!dlg->isOriginalSize()) {
auto size_coef = static_cast<double>(dlg->Xpixels()) / static_cast<double>(w);
w = static_cast<int>(std::round(w * size_coef));
h = static_cast<int>(std::round(h * size_coef));
2014-11-24 21:14:30 +08:00
}
if (dlg->isValidFilename()) {
if (!dlg->isSvg()) {
QImage* img;
switch (dlg->getImgFormat()) {
case ExportDialog::Coloured :
img = new QImage(w,h,QImage::Format_RGB888);
break;
case ExportDialog::Grayscale :
img = new QImage(w,h,QImage::Format_Grayscale8);
break;
2014-11-24 21:14:30 +08:00
case ExportDialog::Monochrome :
img = new QImage(w,h,QImage::Format_Mono);
break;
default :
break;
}
QPainter* p = new QPainter(img);
p->fillRect(0, 0, w, h, Qt::white);
sch->print(nullptr, p, exportAll, true, QMargins{border, border, border, border});
2014-11-24 21:14:30 +08:00
img->save(filename);
delete p;
delete img;
}
else {
QSvgGenerator* svgwriter = new QSvgGenerator();
if (dlg->needsInkscape()) {
svgwriter->setFileName(filename+".tmp.svg");
} else {
svgwriter->setFileName(filename);
}
//svgwriter->setSize(QSize(1.12*w,1.1*h));
svgwriter->setSize(QSize(w,h));
2014-11-24 21:14:30 +08:00
QPainter *p = new QPainter(svgwriter);
p->fillRect(0, 0, svgwriter->size().width(), svgwriter->size().height(), Qt::white);
sch->print(nullptr, p, exportAll, true, QMargins{border, border, border, border});
2014-11-24 21:14:30 +08:00
delete p;
delete svgwriter;
if (dlg->needsInkscape()) {
2022-02-24 23:16:43 +01:00
QString cmd = "inkscape";
QStringList args;
args<<"-z"<<"-D";
QString stmp = "--file=" + filename+".tmp.svg";
args<<stmp;
2014-11-24 21:14:30 +08:00
if (dlg->isPdf_Tex()) {
QString tmp = filename;
tmp.chop(4);
2022-02-24 23:16:43 +01:00
stmp = "--export-pdf="+ tmp + " --export-latex";
args<<stmp;
2014-11-24 21:14:30 +08:00
}
if (dlg->isPdf()) {
2022-02-24 23:16:43 +01:00
stmp = "--export-pdf=" + filename;
args<<stmp;
2014-11-24 21:14:30 +08:00
}
if (dlg->isEps()) {
2022-02-24 23:16:43 +01:00
stmp = "--export-eps=" + filename;
args<<stmp;
2014-11-24 21:14:30 +08:00
}
2022-02-24 23:16:43 +01:00
int result = QProcess::execute(cmd,args);
2014-11-24 21:14:30 +08:00
if (result!=0) {
QMessageBox::critical(0, QObject::tr("Export to image"),
QObject::tr("Inkscape start error!"), QMessageBox::Ok);
}
QFile::remove(filename+".tmp.svg");
}
}
if (QFile::exists(filename)) {
//QMessageBox::information(0, QObject::tr("Export to image"),
// QObject::tr("Successfully exported"), QMessageBox::Ok);
status = 0;
2014-11-24 21:14:30 +08:00
}
else {
QMessageBox::information(0, QObject::tr("Export to image"),
QObject::tr("Disk write error!"), QMessageBox::Ok);
status = -1;
2014-11-24 21:14:30 +08:00
}
} else {
QMessageBox::critical(0, QObject::tr("Export to image"),
QObject::tr("Unsupported format of graphics file. \n"
"Use PNG, JPEG or SVG graphics!"), QMessageBox::Ok);
status = -1;
2014-11-24 21:14:30 +08:00
}
}
delete dlg;
return status;
}