You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
414 B
19 lines
414 B
import QtQuick 2.13
|
|
import QtGraphicalEffects 1.13
|
|
|
|
Item {
|
|
property alias color: idOverlay.color
|
|
property alias source: idImage.source
|
|
Image {
|
|
id: idImage
|
|
visible: false
|
|
fillMode: Image.PreserveAspectFit
|
|
sourceSize.width: width
|
|
sourceSize.height: height
|
|
}
|
|
ColorOverlay {
|
|
id: idOverlay
|
|
anchors.fill: parent
|
|
source: idImage
|
|
}
|
|
}
|
|
|