Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use full page for pdf in getPrint request
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15088 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Jan 27, 2011
1 parent d22fe45 commit 3f8e6a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mapserver/qgswmsserver.cpp
Expand Up @@ -414,10 +414,11 @@ QByteArray* QgsWMSServer::getPrint( const QString& formatString )
}

QPrinter printer;
printer.setResolution( c->printResolution() );
printer.setFullPage( true );
printer.setOutputFormat( QPrinter::PdfFormat );
printer.setOutputFileName( tempFile.fileName() );
printer.setPaperSize( QSizeF( c->paperWidth(), c->paperHeight() ), QPrinter::Millimeter );
printer.setResolution( c->printResolution() );

QRectF paperRectMM = printer.pageRect( QPrinter::Millimeter );
QRectF paperRectPixel = printer.pageRect( QPrinter::DevicePixel );
Expand Down

0 comments on commit 3f8e6a9

Please sign in to comment.