PIL Image / opencv

ph
Admin (토론 | 기여)님의 2019년 5월 13일 (월) 17:06 판 (→‎transparent image paste)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
이동: 둘러보기, 검색

transparent image paste

import Image

background = Image.open("test1.png")
foreground = Image.open("test2.png")

background.paste(foreground, (0, 0), foreground)
background.show()

[1]

opencv

links

tutorial