Skip to content

Instantly share code, notes, and snippets.

@FONQRI
Created March 30, 2023 08:38
Show Gist options
  • Save FONQRI/3090482215cc9213ccc3087ae7310d52 to your computer and use it in GitHub Desktop.
Save FONQRI/3090482215cc9213ccc3087ae7310d52 to your computer and use it in GitHub Desktop.
QtQuickTutorialImageUsage1.qml for moderncpp.ir tutorial
Image {
x: 12; y: 12
// width: 72
// height: 72
source: "assets/triangle_red.png"
}
Image {
x: 12+64+12; y: 12
// width: 72
height: 72/2
source: "assets/triangle_red.png"
fillMode: Image.PreserveAspectCrop
clip: true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment