한국어
Qt
 

QML and Qt Quick OpacityMask 예제

makersweb 2023.01.26 21:03 조회 수 : 657

OpacityMask을 사용하면 소스 아이템을 다른 아이템으로 마스킹할 수 있다.

import QtQuick
import QtQuick.Window
import Qt5Compat.GraphicalEffects

Window {
    visible: true
    width: 500
    height: 400
    title: qsTr("QtQuick GraphicalEffects")

    Rectangle {
        id: area
        anchors.fill: parent
        color: "white"

        Rectangle {
            id: punchHole
            width: 400
            height: 300

            anchors.centerIn: parent

            color: "yellowgreen"

            layer.enabled: true
            layer.effect: OpacityMask{
                maskSource: Rectangle {
                    width: punchHole.width
                    height: punchHole.height
                    radius: 15
                }
            }

            /* Internel Content */
            Text {
                font.pixelSize: 20
                text: qsTr("This property allows the effect output pixels to be cached \n in order to improve the rendering performance.")
                anchors.centerIn: parent
                color: "black"
                horizontalAlignment: Text.AlignHCenter
            }
        }
    }
}

 

OpacityMask.png


다음과 같은 이미지를 넣어보자.

sky.jpg

단지 Image 아이템을 사용하고 source를 지정하면 된다.

import QtQuick
import QtQuick.Window
import Qt5Compat.GraphicalEffects

Window {
    visible: true
    width: 500
    height: 400
    title: qsTr("QtQuick GraphicalEffects")

    Rectangle {
        id: area
        anchors.fill: parent
        color: "white"

        Image {
            id: punchHole
            width: 400
            height: 300

            anchors.centerIn: parent

            source: "qrc:/sky.jpg"

            layer.enabled: true
            layer.effect: OpacityMask{
                maskSource: Rectangle {
                    width: punchHole.width
                    height: punchHole.height
                    radius: 15
                }
            }

            /* Internel Content */
            Text {
                font.pixelSize: 20
                text: qsTr("This property allows the effect output pixels to be cached \n in order to improve the rendering performance.")
                anchors.centerIn: parent
                color: "greenyellow"
                horizontalAlignment: Text.AlignHCenter
            }
        }
    }
}

 

OpacityMask1.png

번호 제목 글쓴이 날짜 조회 수
공지 Qt프로그래밍(QtQuick) Beginner를 위한 글 읽는 순서 운영자 2019.01.05 86184
179 z-order 를 컨트롤 하기위한 방법 makersweb 2015.05.13 6594
178 Qml 사용자 ScrollBar 구현 file makersweb 2015.07.24 6234
177 QQuickImageProvider 를 이용한 Qml 에서 이미지 표시 makersweb 2015.10.18 6008
176 Qt의 시그널 슬롯 시스템 file makersweb 2015.10.20 23674
175 Qt의 스레드간 시그널 슬롯의 커넥션타입 [1] makersweb 2015.10.24 10219
174 Qt 프로그래밍의 시작 makersweb 2015.10.25 14409
173 QtConcurrent를 이용하여 쓰레드를 만드는 방법과 MapReduce file makersweb 2016.01.24 9481
172 Ubuntu Linux에서 Qt Creator 설치 file makersweb 2016.03.06 10682
171 멀티 스레드환경, 스레드에 안전한 이벤트처리 makersweb 2016.10.27 5050
170 QString 문자열에서 숫자만 추출해서 QString으로 반환 makersweb 2017.01.10 3078
169 Qt Logging Rule, Qt 프레임워크 로그 출력 makersweb 2017.01.13 3713
168 타임스탬프( timestamp) 유닉스 시간 makersweb 2017.10.19 1627
167 QPA 플러그인과 EGLFS file makersweb 2017.11.21 3941
166 QML에서 undefined를 확인하는 방법 makersweb 2017.11.29 1489
165 임의의 메모리 영역(QImage)에 QPainter를 이용하여 그리기 file makersweb 2017.12.19 3463
164 QPA 플러그인과 HTML5 Backend file makersweb 2017.12.27 809
163 Qt 3D Studio 시작하기 file makersweb 2018.01.11 3830
162 Qt 어플리에이션 전역에 폰트 설정 makersweb 2018.01.24 5627
161 다국어 지원 어플리케이션 개발 file makersweb 2018.01.27 2986
160 Windows환경에서 mingw로 Qt 5.10 정적(static)빌드 file makersweb 2018.02.01 5709