We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed15656 commit b74ea1fCopy full SHA for b74ea1f
1 file changed
documentation/tutorials/README.md
@@ -22,7 +22,7 @@ foreground = Image.open(THISDIR + "/duck.png")
22
23
Blend modes define how the **foreground** interacts with the **background**. Let’s start with the most fundamental mode:
24
25
-## **Normal**
+## Normal
26
27
The **Normal** blend mode places the foreground image on top of the background without
28
any additional blending effects.
@@ -31,6 +31,9 @@ any additional blending effects.
31
blendLayers(background, foreground, BlendType.NORMAL)
32
```
33
34
+
35
+
36
37
Further examples of different blend types using `rainbow.png` and `duck.png` are as below
38
39
Note: for other composition examples (without code snippets), check out the [extended blend mode examples](blend_examples.md).
0 commit comments