Create a PDF from Qt Creator
-
and you also searched for test.pdf to make sure
its not created any where else ? -
@TheCipo76
Very odd.
Can you try this code. it let u select save location
if that dont work. something up with your Qt.void printv4() { QPrinter printer(QPrinter::HighResolution); printer.setOrientation(QPrinter::Landscape); printer.setOutputFormat(QPrinter::PdfFormat); printer.setPaperSize(QPrinter::A4); QString fileName = QFileDialog::getSaveFileName(0,"file", "c:\\", "pdf (*.pdf)"); printer.setOutputFileName(fileName); QPainter painter; painter.begin(&printer); painter.drawText( 200,200, "HELLO" ); painter.end(); }
-
Super :)
So on mac it seems the file go somewhere else
if no path. maybe a read only place.
So when we tell the exact location , it does work :) -
@TheCipo76 said in Create a PDF from Qt Creator:
printer.setOutputFileName("PrimoPDF.pdf");
When launched from QtCreator, the default working directory is set to:
MyApp/Contents/MacOS/When launched from the finder, the path is usely the user directory, but actualy it is the root directory (/) and obviously nothing is written (wrong permissions)
-
@mrjj said in Create a PDF from Qt Creator:
Super :)
So on mac it seems the file go somewhere else if no pathIIRC the standard path is
/Users/yourUserName/Library/Application Support
-
@dan1973 said in Create a PDF from Qt Creator:
I need to know how to draw lines in PDF document using Qt