1 Star 0 Fork 0

tkzc00/demo_cloud_music_player

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MusicRoundImage.qml 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
tkzc00 提交于 2023-05-27 11:47 . 自定义圆角图片
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtGraphicalEffects 1.15
Item {
property string imgSrc: "qrc:/images/player"
property int borderRadius: 5
Image {
id: image
source: imgSrc
anchors.centerIn: parent
smooth: true
width: parent.width
height: parent.height
fillMode: Image.PreserveAspectCrop // 保持长宽比来裁剪
antialiasing: true // 抗锯齿
visible: false
}
Rectangle {
id: mask
anchors.fill: parent
color: "black"
radius: borderRadius
smooth: true
antialiasing: true
visible: false
}
OpacityMask {
anchors.fill: image
source: image
maskSource: mask
visible: true
antialiasing: true
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
QML
1
https://gitee.com/tkzc00/demo_cloud_music_player.git
git@gitee.com:tkzc00/demo_cloud_music_player.git
tkzc00
demo_cloud_music_player
demo_cloud_music_player
master

搜索帮助