You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

71 lines
1.9 KiB

/***************************************************************************
* Copyright (C) 2005 by Albert Astals Cid <tsdgeos@terra.es> *
* *
* This program 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 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include <qpainter.h>
#include <qpixmap.h>
#include <qimage.h>
#include <kprinter.h>
#include "core/page.h"
#include "generator_kimgio.h"
KPDF_EXPORT_PLUGIN(KIMGIOGenerator)
KIMGIOGenerator::KIMGIOGenerator( KPDFDocument * document ) : Generator( document )
{
}
KIMGIOGenerator::~KIMGIOGenerator()
{
delete m_pix;
}
bool KIMGIOGenerator::loadDocument( const QString & fileName, QVector<KPDFPage*> & pagesVector )
{
m_pix = new QPixmap(fileName);
pagesVector.resize( 1 );
KPDFPage * page = new KPDFPage( 0, m_pix->width(), m_pix->height(), 0 );
pagesVector[0] = page;
return true;
}
bool KIMGIOGenerator::canGeneratePixmap( bool /* async */ )
{
return true;
}
void KIMGIOGenerator::generatePixmap( PixmapRequest * request )
{
// perform a smooth scaled generation
QImage smoothImage = m_pix->convertToImage().smoothScale( request->width, request->height );
QPixmap * p = new QPixmap( smoothImage );
request->page->setPixmap(request->id, p);
// signal that the request has been accomplished
signalRequestDone(request);
}
bool KIMGIOGenerator::hasFonts() const
{
return false;
}
bool KIMGIOGenerator::print( KPrinter& printer )
{
QPainter p(&printer);
p.drawPixmap(0, 0, *m_pix);
return true;
}
#include "generator_kimgio.moc"