mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2026-06-24 23:09:11 -04:00
Improve size limits for AVIF, HEIF, and RAW plugins
This commit is contained in:
@@ -65,11 +65,11 @@ public:
|
||||
|
||||
inline int width() const
|
||||
{
|
||||
return (XMax - XMin) + 1;
|
||||
return int(XMax - XMin) + 1;
|
||||
}
|
||||
inline int height() const
|
||||
{
|
||||
return (YMax - YMin) + 1;
|
||||
return int(YMax - YMin) + 1;
|
||||
}
|
||||
inline bool isCompressed() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user