goldendict-ng/tiff.cc

32 lines
848 B
C++
Raw Normal View History

/* This file is (c) 2014 Abs62
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
2014-02-16 10:22:13 +00:00
#include "tiff.hh"
#include <QBuffer>
#include <QApplication>
#include <QScreen>
namespace GdTiff {
void tiff2img( std::vector< char > & data, const char * format )
2022-04-05 13:25:07 +00:00
{
QImage img = QImage::fromData( (unsigned char *)&data.front(), data.size() );
if ( !img.isNull() ) {
2022-04-05 13:25:07 +00:00
QByteArray ba;
QBuffer buffer( &ba );
buffer.open( QIODevice::WriteOnly );
QSize screenSize = QApplication::primaryScreen()->availableSize();
QSize imgSize = img.size();
int scaleSize = qMin( imgSize.width(), screenSize.width() );
img.scaledToWidth( scaleSize ).save( &buffer, format );
2022-04-05 13:25:07 +00:00
data.resize( buffer.size() );
memcpy( &data.front(), buffer.data(), data.size() );
buffer.close();
}
}
} // namespace GdTiff