回答編集履歴
1
test
CHANGED
@@ -3,4 +3,12 @@
|
|
3
3
|
ani = anm.FuncAnimation(fig, update,fargs=(x,y),frames=frame,interval = 20)
|
4
4
|
ani.save("animation_test.gif", dpi=200,writer="pillow", savefig_kwargs={"transparent": True, "facecolor": "none"})
|
5
5
|
```
|
6
|
+
|
7
|
+
**別画像との重ね合わせ**
|
8
|
+
|
9
|
+
```bash
|
10
|
+
# ImageMagick
|
11
|
+
$ convert flower.jpg -compose over animation_test.gif compose.gif
|
12
|
+
```
|
13
|
+
|
6
|
-

|