I'm getting confused by the way of drawImage and scaledToHeight (or any kind of scaling) is working. Could any of you help me to understand what's going on here?

So I have the fallowing code:

Qt Code:
  1. auto cellX = this->parentWidget()->width() / 100;
  2. auto cellY = this->parentWidget()->height() / 100;
  3.  
  4. QImage icon(dir.absoluteFilePath(m_viewModel.icon));
  5. QImage scaled = icon.scaledToHeight(cellY * 40, Qt::SmoothTransformation);
  6. painter.drawImage(cellX * 20, cellY * 20, scaled);
To copy to clipboard, switch view to plain text mode 
Now if I understand it correctly this should work as the following:

QImage QImage::scaledToHeight(int height, Qt::TransformationMode mode = Qt::FastTransformation) const

Returns a scaled copy of the image. The returned image is scaled to
the given height using the specified transformation mode.

This function automatically calculates the width of the image so that
the ratio of the image is preserved.

If the given height is 0 or negative, a null image is returned.
and also

void QPainter::drawImage(int x, int y, const QImage &image, int sx = 0, int sy = 0, int sw = -1, int sh = -1, Qt::ImageConversionFlags flags = Qt::AutoColor)

This is an overloaded function.

Draws an image at (x, y) by copying a part of image into the paint
device.

(x, y) specifies the top-left point in the paint device that is to be
drawn onto. (sx, sy) specifies the top-left point in image that is to
be drawn. The default is (0, 0).

(sw, sh) specifies the size of the image that is to be drawn. The
default, (0, 0) (and negative) means all the way to the bottom-right
of the image.
So in other words, scaledToHeight is going to return a new image scaled according to that specific height and drawImage is going to draw that specific image started from point X, Y which I'm going to mention down to the end of the image (because it's -1 and -1 default)

VNqLF.png
rwDZK.png
Dbo3K.png

QUESTION:

As you could see already my scaled image is strictly dependent on the position of drawImage, why is that? How can I scale and draw my image properly? Or in other words WHY if I will position my image at 0 0 or not will affect how my image looks like?

CODE:

I have my Widget Class which looks something like this:
Qt Code:
  1. class AC_SpeedLevelController : public QWidget {
  2. Q_OBJECT
  3.  
  4. protected:
  5. void paintEvent(QPaintEvent *event) override;
  6.  
  7. private:
  8. AC_ButtonViewModel m_viewModel{};
  9. public:
  10. explicit AC_SpeedLevelController(QWidget *parent);
  11.  
  12. void setupStyle(const AC_ButtonViewModel &model) override;
  13.  
  14. };
To copy to clipboard, switch view to plain text mode 

My paintEvent is going to look like:
Qt Code:
  1. void AC_SpeedLevelController::paintEvent(QPaintEvent *event) {
  2. QWidget::paintEvent(event);
  3. QPainter painter(this);
  4.  
  5. QDir dir(qApp->applicationDirPath());
  6. dir.cd("icons");
  7. auto cellX = this->parentWidget()->width() / 100;
  8. auto cellY = this->parentWidget()->height() / 100;
  9.  
  10. QImage icon(dir.absoluteFilePath(m_viewModel.icon));
  11. QImage scaled = icon.scaledToHeight(cellY * 20, Qt::SmoothTransformation);
  12. painter.drawImage(0, 0, scaled);
  13. }
To copy to clipboard, switch view to plain text mode