"PIL Image / opencv"의 두 판 사이의 차이
ph
잔글 (→links) |
|||
13번째 줄: | 13번째 줄: | ||
== links == | == links == | ||
[https://pythonprogramming.net/drawing-writing-python-opencv-tutorial/ tutorial] | [https://pythonprogramming.net/drawing-writing-python-opencv-tutorial/ tutorial] | ||
− |
2019년 5월 13일 (월) 17:06 판
transparent image paste
import Image
background = Image.open("test1.png")
foreground = Image.open("test2.png")
background.paste(foreground, (0, 0), foreground)
background.show()