mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
auto generate icon ,fill background
This commit is contained in:
parent
e2b6fd51e2
commit
fb2322c53e
|
@ -242,7 +242,7 @@ bool Class::loadIconFromFile( QString const & _filename, bool isFullName )
|
|||
// Load successful
|
||||
|
||||
//some icon is very large ,will crash the application.
|
||||
img = img.scaledToWidth( 48 );
|
||||
img = img.scaledToWidth( 64 );
|
||||
// Apply the color key
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(6,0,0))
|
||||
img.setAlphaChannel( img.createMaskFromColor( QColor( 192, 192, 192 ).rgb(),
|
||||
|
@ -281,11 +281,11 @@ bool Class::loadIconFromText( QString const & text )
|
|||
|
||||
if ( !img.isNull() )
|
||||
{
|
||||
int iconSize = 48;
|
||||
int iconSize = 64;
|
||||
//some icon is very large ,will crash the application.
|
||||
img = img.scaledToWidth( iconSize );
|
||||
QImage result( iconSize, iconSize, QImage::Format_ARGB32 );
|
||||
|
||||
result.fill( 0 ); // Black transparent
|
||||
int max = img.width() > img.height() ? img.width() : img.height();
|
||||
|
||||
QPainter painter( &result );
|
||||
|
|
Loading…
Reference in a new issue