summaryrefslogtreecommitdiffstats
path: root/src/gui/image/qimagereader.cpp
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2014-10-27 13:00:36 +0100
committerFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2014-10-27 13:00:36 +0100
commit2eb26c170920d28213b71e549d5dac4663febb14 (patch)
tree8df5223ac114d758c2112a8fc787992175556418 /src/gui/image/qimagereader.cpp
parent49ddae28e0dcd1c59dd5d742cffedd5290d1224a (diff)
parent81998b4e8e440076bd22a9164f0a93481c0e597a (diff)
Merge remote-tracking branch 'origin/5.4' into dev
Conflicts: src/gui/text/qfontdatabase.cpp Change-Id: I6ac1f55faa22b8e7b591386fb67f0333d0ea443d
Diffstat (limited to 'src/gui/image/qimagereader.cpp')
-rw-r--r--src/gui/image/qimagereader.cpp23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/gui/image/qimagereader.cpp b/src/gui/image/qimagereader.cpp
index e847a45a85..ad84b0a091 100644
--- a/src/gui/image/qimagereader.cpp
+++ b/src/gui/image/qimagereader.cpp
@@ -877,15 +877,22 @@ QString QImageReader::fileName() const
/*!
\since 4.2
- This is an image format specific function that sets the quality
- level of the image to \a quality. For image formats that do not
- support setting the quality, this value is ignored.
+ Sets the quality setting of the image format to \a quality.
- The value range of \a quality depends on the image format. For
- example, the "jpeg" format supports a quality range from 0 (low
- quality, high compression) to 100 (high quality, low compression).
+ Some image formats, in particular lossy ones, entail a tradeoff between a)
+ visual quality of the resulting image, and b) decoding execution time.
+ This function sets the level of that tradeoff for image formats that
+ support it.
- \sa quality()
+ In case of scaled image reading, the quality setting may also influence the
+ tradeoff level between visual quality and execution speed of the scaling
+ algorithm.
+
+ The value range of \a quality depends on the image format. For example,
+ the "jpeg" format supports a quality range from 0 (low visual quality) to
+ 100 (high visual quality).
+
+ \sa quality() setScaledSize()
*/
void QImageReader::setQuality(int quality)
{
@@ -895,7 +902,7 @@ void QImageReader::setQuality(int quality)
/*!
\since 4.2
- Returns the quality level of the image.
+ Returns the quality setting of the image format.
\sa setQuality()
*/