QPixmap scaled函数

  • Post author:
  • Post category:其他


QPixmap::scaled(const



QSize



&

size

,



Qt::AspectRatioMode




aspectRatioMode

= Qt::IgnoreAspectRatio,



Qt::TransformationMode




transformMode

= Qt::FastTransformation) const

根据给定的尺寸来放大缩小QPixmap

IgnoreAspectRatio  矩形框有多大,图片就缩放成多大,不限制原图片的长宽比

KeepAspectRatio    保持原图片的长宽比,且不超过矩形框的大小

KeepAspectRatioByExpanding   根据矩形框的大小最大缩放图片

QPixmap::scaled(int

width

, int

height

,



Qt::AspectRatioMode




aspectRatioMode

= Qt::IgnoreAspectRatio,



Qt::TransformationMode




transformMode

= Qt::FastTransformation) const

返回匹配目标设置后的QPixmap,宽高为给定值



版权声明:本文为weixin_42460329原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。