Can not print to paper in Qt The Next CEO of Stack OverflowHow to print to console when using QtHow can I change the paper size for Qt QPrinter?Print plain text to printer (paper)Printing to paper in QtQTableWidget print table on paperMillimeter paper in QtReceipt printer feeds paper instead of printing textSetting custom paper size with QPrinter doesn't print correctlyQt printer custom paper sizeSet paper size of QPrinter
How many extra stops do monopods offer for tele photographs?
What is the value of α and β in a triangle?
Is it possible to replace duplicates of a character with one character using tr
What happened in Rome, when the western empire "fell"?
Why don't programming languages automatically manage the synchronous/asynchronous problem?
WOW air has ceased operation, can I get my tickets refunded?
Is a distribution that is normal, but highly skewed considered Gaussian?
How to count occurrences of text in a file?
What flight has the highest ratio of time difference to flight time?
RigExpert AA-35 - Interpreting The Information
Why does the flight controls check come before arming the autobrake on the A320?
Prepend last line of stdin to entire stdin
How to avoid supervisors with prejudiced views?
How to install OpenCV on Raspbian Stretch?
Won the lottery - how do I keep the money?
Why is information "lost" when it got into a black hole?
INSERT to a table from a database to other (same SQL Server) using Dynamic SQL
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
Can MTA send mail via a relay without being told so?
Are police here, aren't itthey?
Does increasing your ability score affect your main stat?
Is it ever safe to open a suspicious HTML file (e.g. email attachment)?
Easy to read palindrome checker
How a 64-bit process virtual address space is divided in Linux?
Can not print to paper in Qt
The Next CEO of Stack OverflowHow to print to console when using QtHow can I change the paper size for Qt QPrinter?Print plain text to printer (paper)Printing to paper in QtQTableWidget print table on paperMillimeter paper in QtReceipt printer feeds paper instead of printing textSetting custom paper size with QPrinter doesn't print correctlyQt printer custom paper sizeSet paper size of QPrinter
I can not print to paper for some reasone. So I have a functional printer. And I use the folowing code to print a qDialog and a few pictures out:
QPrinter printer;
QPainter painter;
painter.begin(&printer);
double xscale = printer.width() / double(window->width());
double yscale = printer.height() / double(window->height());
double scale = qMin(xscale, yscale);
painter.scale(scale, scale);
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
bool skip = true;
if(ui->generalInfos->isChecked())
//window is a QDialog I want to print out
window->render(&painter);
skip = false;
QList<Document *> docs;
if(worker)
//a list with path to pictures
docs = worker->getDocuments();
for(auto document : docs)
if(ui->Documents->isChecked(document->getID()))
for(auto scan : document->getScans())
if(!skip)
printer.newPage();
else
skip = false;
painter.resetTransform();
const QImage image(scan);
const QPoint imageCoordinates(0,0);
xscale = printer.width() / double(image.width());
yscale = printer.height() / double(image.height());
scale = qMin(xscale, yscale);
painter.scale(scale, scale);
painter.drawImage(imageCoordinates,image);
painter.end();
and it doesn't work. Nothing is printed and Qt trows an error:
QWin32PrintEngine::newPage: EndPage failed (The parameter is incorrect.)
QWin32PrintEngine::end: EndPage failed (0x31210cf7) (The parameter is incorrect.)
can someone please help me?
qt
add a comment |
I can not print to paper for some reasone. So I have a functional printer. And I use the folowing code to print a qDialog and a few pictures out:
QPrinter printer;
QPainter painter;
painter.begin(&printer);
double xscale = printer.width() / double(window->width());
double yscale = printer.height() / double(window->height());
double scale = qMin(xscale, yscale);
painter.scale(scale, scale);
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
bool skip = true;
if(ui->generalInfos->isChecked())
//window is a QDialog I want to print out
window->render(&painter);
skip = false;
QList<Document *> docs;
if(worker)
//a list with path to pictures
docs = worker->getDocuments();
for(auto document : docs)
if(ui->Documents->isChecked(document->getID()))
for(auto scan : document->getScans())
if(!skip)
printer.newPage();
else
skip = false;
painter.resetTransform();
const QImage image(scan);
const QPoint imageCoordinates(0,0);
xscale = printer.width() / double(image.width());
yscale = printer.height() / double(image.height());
scale = qMin(xscale, yscale);
painter.scale(scale, scale);
painter.drawImage(imageCoordinates,image);
painter.end();
and it doesn't work. Nothing is printed and Qt trows an error:
QWin32PrintEngine::newPage: EndPage failed (The parameter is incorrect.)
QWin32PrintEngine::end: EndPage failed (0x31210cf7) (The parameter is incorrect.)
can someone please help me?
qt
add a comment |
I can not print to paper for some reasone. So I have a functional printer. And I use the folowing code to print a qDialog and a few pictures out:
QPrinter printer;
QPainter painter;
painter.begin(&printer);
double xscale = printer.width() / double(window->width());
double yscale = printer.height() / double(window->height());
double scale = qMin(xscale, yscale);
painter.scale(scale, scale);
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
bool skip = true;
if(ui->generalInfos->isChecked())
//window is a QDialog I want to print out
window->render(&painter);
skip = false;
QList<Document *> docs;
if(worker)
//a list with path to pictures
docs = worker->getDocuments();
for(auto document : docs)
if(ui->Documents->isChecked(document->getID()))
for(auto scan : document->getScans())
if(!skip)
printer.newPage();
else
skip = false;
painter.resetTransform();
const QImage image(scan);
const QPoint imageCoordinates(0,0);
xscale = printer.width() / double(image.width());
yscale = printer.height() / double(image.height());
scale = qMin(xscale, yscale);
painter.scale(scale, scale);
painter.drawImage(imageCoordinates,image);
painter.end();
and it doesn't work. Nothing is printed and Qt trows an error:
QWin32PrintEngine::newPage: EndPage failed (The parameter is incorrect.)
QWin32PrintEngine::end: EndPage failed (0x31210cf7) (The parameter is incorrect.)
can someone please help me?
qt
I can not print to paper for some reasone. So I have a functional printer. And I use the folowing code to print a qDialog and a few pictures out:
QPrinter printer;
QPainter painter;
painter.begin(&printer);
double xscale = printer.width() / double(window->width());
double yscale = printer.height() / double(window->height());
double scale = qMin(xscale, yscale);
painter.scale(scale, scale);
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
bool skip = true;
if(ui->generalInfos->isChecked())
//window is a QDialog I want to print out
window->render(&painter);
skip = false;
QList<Document *> docs;
if(worker)
//a list with path to pictures
docs = worker->getDocuments();
for(auto document : docs)
if(ui->Documents->isChecked(document->getID()))
for(auto scan : document->getScans())
if(!skip)
printer.newPage();
else
skip = false;
painter.resetTransform();
const QImage image(scan);
const QPoint imageCoordinates(0,0);
xscale = printer.width() / double(image.width());
yscale = printer.height() / double(image.height());
scale = qMin(xscale, yscale);
painter.scale(scale, scale);
painter.drawImage(imageCoordinates,image);
painter.end();
and it doesn't work. Nothing is printed and Qt trows an error:
QWin32PrintEngine::newPage: EndPage failed (The parameter is incorrect.)
QWin32PrintEngine::end: EndPage failed (0x31210cf7) (The parameter is incorrect.)
can someone please help me?
qt
qt
edited Mar 8 at 9:13
Александр Литвицкий
asked Mar 7 at 16:43
Александр ЛитвицкийАлександр Литвицкий
245
245
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you simplify your code, you will probably find the solution.
So lets start with selecting the printer, then (afterwards!) start painting to the printer:
QPrinter printer;
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
QPainter painter;
painter.begin(&printer);
window->render(&painter);
painter.end();
If this works, add more of your old code to the sketch above.
If it doesn't work, something else in your program or your environment (selected printer?) is wrong, so you need to extend your bug hunt beyond what you showed us here.
The thing you have shown actually works. Thank you very much.
– Александр Литвицкий
Mar 10 at 15:38
I am sorry I had to ask a question that simple, but it feels to me like the documentation covering this topic is not very clear.
– Александр Литвицкий
Mar 10 at 15:48
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55048886%2fcan-not-print-to-paper-in-qt%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you simplify your code, you will probably find the solution.
So lets start with selecting the printer, then (afterwards!) start painting to the printer:
QPrinter printer;
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
QPainter painter;
painter.begin(&printer);
window->render(&painter);
painter.end();
If this works, add more of your old code to the sketch above.
If it doesn't work, something else in your program or your environment (selected printer?) is wrong, so you need to extend your bug hunt beyond what you showed us here.
The thing you have shown actually works. Thank you very much.
– Александр Литвицкий
Mar 10 at 15:38
I am sorry I had to ask a question that simple, but it feels to me like the documentation covering this topic is not very clear.
– Александр Литвицкий
Mar 10 at 15:48
add a comment |
If you simplify your code, you will probably find the solution.
So lets start with selecting the printer, then (afterwards!) start painting to the printer:
QPrinter printer;
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
QPainter painter;
painter.begin(&printer);
window->render(&painter);
painter.end();
If this works, add more of your old code to the sketch above.
If it doesn't work, something else in your program or your environment (selected printer?) is wrong, so you need to extend your bug hunt beyond what you showed us here.
The thing you have shown actually works. Thank you very much.
– Александр Литвицкий
Mar 10 at 15:38
I am sorry I had to ask a question that simple, but it feels to me like the documentation covering this topic is not very clear.
– Александр Литвицкий
Mar 10 at 15:48
add a comment |
If you simplify your code, you will probably find the solution.
So lets start with selecting the printer, then (afterwards!) start painting to the printer:
QPrinter printer;
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
QPainter painter;
painter.begin(&printer);
window->render(&painter);
painter.end();
If this works, add more of your old code to the sketch above.
If it doesn't work, something else in your program or your environment (selected printer?) is wrong, so you need to extend your bug hunt beyond what you showed us here.
If you simplify your code, you will probably find the solution.
So lets start with selecting the printer, then (afterwards!) start painting to the printer:
QPrinter printer;
QPrintDialog printDialog(&printer, this);
if (printDialog.exec() == QDialog::Accepted)
QPainter painter;
painter.begin(&printer);
window->render(&painter);
painter.end();
If this works, add more of your old code to the sketch above.
If it doesn't work, something else in your program or your environment (selected printer?) is wrong, so you need to extend your bug hunt beyond what you showed us here.
answered Mar 9 at 17:17
JensJens
4,38811736
4,38811736
The thing you have shown actually works. Thank you very much.
– Александр Литвицкий
Mar 10 at 15:38
I am sorry I had to ask a question that simple, but it feels to me like the documentation covering this topic is not very clear.
– Александр Литвицкий
Mar 10 at 15:48
add a comment |
The thing you have shown actually works. Thank you very much.
– Александр Литвицкий
Mar 10 at 15:38
I am sorry I had to ask a question that simple, but it feels to me like the documentation covering this topic is not very clear.
– Александр Литвицкий
Mar 10 at 15:48
The thing you have shown actually works. Thank you very much.
– Александр Литвицкий
Mar 10 at 15:38
The thing you have shown actually works. Thank you very much.
– Александр Литвицкий
Mar 10 at 15:38
I am sorry I had to ask a question that simple, but it feels to me like the documentation covering this topic is not very clear.
– Александр Литвицкий
Mar 10 at 15:48
I am sorry I had to ask a question that simple, but it feels to me like the documentation covering this topic is not very clear.
– Александр Литвицкий
Mar 10 at 15:48
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55048886%2fcan-not-print-to-paper-in-qt%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown