3
如何使用PIL實現與另一個層結合的「躲閃」模式層(如瘸子/ Photoshop中完成)的相同呢?PIL:複合/合併兩個圖像作爲「道奇」
我有我的原始圖像以及圖像我想與合併圖層使用,但我也不怎麼辦躲閃合併/複合:
from PIL import Image, ImageFilter, ImageOps
img = Image.open(fname)
img_blur = img.filter(ImageFilter.BLUR)
img_blur_invert = ImageOps.invert(img_blur)
# Now "dodge" merge img_blur_invert on top of img