ArtImage.qml 323 B

1234567891011121314
  1. import QtQuick 2.5
  2. Image {
  3. property var effect
  4. fillMode: Image.PreserveAspectCrop
  5. source: imageModel.randomPicture()
  6. width: parent.width
  7. mirror: globalSettings.randomlyMirrorArt && (Math.random() < 0.5)
  8. smooth: globalSettings.smoothArt
  9. sourceSize.height: height
  10. sourceSize.width: width
  11. }