OpacityMask QML Type

소스 항목을 다른 항목으로 마스킹합니다. 더 보기...

Import Statement: import Qt5Compat.GraphicalEffects
Since: QtGraphicalEffects 1.0
Inherits:

Item

속성

자세한 설명

소스마스크 소스적용된 효과

예제

다음 예시는 효과를 적용하는 방법을 보여줍니다.

import QtQuick
import Qt5Compat.GraphicalEffects

Item {
    width: 300
    height: 300

    Image {
        id: bug
        source: "images/bug.jpg"
        sourceSize: Qt.size(parent.width, parent.height)
        smooth: true
        visible: false
    }

    Image {
        id: mask
        source: "images/butterfly.png"
        sourceSize: Qt.size(parent.width, parent.height)
        smooth: true
        visible: false
    }

    OpacityMask {
        anchors.fill: bug
        source: bug
        maskSource: mask
    }
}

속성 문서

cached : bool

이 속성을 사용하면 렌더링 성능을 향상시키기 위해 효과 출력 픽셀을 캐시할 수 있습니다.

소스 또는 효과 속성이 변경될 때마다 캐시에 있는 픽셀을 업데이트해야 합니다. 효과 출력을 저장하는 데 추가 메모리 버퍼가 필요하므로 메모리 사용량이 증가합니다.

소스 또는 효과 속성에 애니메이션이 적용될 때는 캐시를 비활성화하는 것이 좋습니다.

기본적으로 이 속성은 false 로 설정되어 있습니다.

참고: 예를 들어 maskSource 을 효과의 부모로 설정하는 등 효과에 자신을 포함하도록 하는 것은 지원되지 않습니다.


invert : bool

이 속성은 sourceMask의 알파 값이 작동하는 방식을 제어합니다.

이 속성이 false 인 경우 결과 불투명도는 소스 알파에 마스크 알파( As * Am)를 곱한 값입니다.

이 속성이 true 인 경우 결과 불투명도는 소스 알파에 마스크 알파의 역수( As * (1 - Am))를 곱한 값입니다.

기본값은 false 입니다.


maskSource : variant

이 속성은 마스크로 사용할 항목을 정의합니다. 마스크 항목은 중간 픽셀 버퍼로 렌더링되고 결과의 알파 값은 디스플레이에서 소스 항목의 픽셀 가시성을 결정하는 데 사용됩니다.

원본마스크효과 적용


source : variant

이 속성은 마스킹할 소스 항목을 정의합니다.

참고: 소스를 효과의 부모로 설정하는 등 효과에 효과 자체를 포함하도록 하는 것은 지원되지 않습니다.


© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.