2016-11-16 8 views

답변

0

두 번째 이미지처럼 보이게하기 위해 첫 번째 이미지에 적용 할 수있는 필터를 필요 녹색 색상과 완전히 일치합니다. "CSS 블렌드 모드에서도이 작업을 수행 할 수 있습니다.

<svg width="800px" height="600px"> 
    <defs> 
    <filter id="greenit" x="0%" y="0%" width="100%" height="100%"> 
    <feFlood flood-color="#8B5"/> 
    <feBlend mode="multiply" in2="SourceGraphic"/> 
    </filter> 

    </defs> 

    <image filter="url(#greenit") width="400px" height="400px" xlink:href="https://www.binarymoon.co.uk/wp-content/uploads/2012/04/draw-something-unicorn-e1334932907258.png"/> 

</svg>