質問編集履歴
4
タイトル変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ImageMagick で連番のファイルを
|
1
|
+
ImageMagick で連番のファイルをまとめて処理したい。
|
test
CHANGED
File without changes
|
3
charange
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,4 +38,14 @@
|
|
38
38
|
|
39
39
|
# convert: MissingAnImageFilename `180' @ error/convert.c/ConvertImageCommand/3282.
|
40
40
|
|
41
|
+
|
42
|
+
|
43
|
+
# eval で複数行のそれぞれを実行させることができないので失敗しているっぽい
|
44
|
+
|
45
|
+
eval $(seq -f '%03g.bmp' 4 2 100 | awk '{print "magick convert " $0 " -rotate 180 " $0}')
|
46
|
+
|
47
|
+
# magick.exe: UnableToOpenBlob 'magick': No such file or directory @ error/blob.c/OpenBlob/3537.
|
48
|
+
|
49
|
+
# magick.exe: NoDecodeDelegateForThisImageFormat `' @ error/constitute.c/ReadImage/562.
|
50
|
+
|
41
51
|
```
|
2
detail
test
CHANGED
File without changes
|
test
CHANGED
@@ -7,6 +7,8 @@
|
|
7
7
|
imagemagickはパイプに対応していないのでしょうか?
|
8
8
|
|
9
9
|
|
10
|
+
|
11
|
+
Windonw10 msys2 zsh
|
10
12
|
|
11
13
|
Version: ImageMagick 7.0.10-29 Q16 x64 2020-09-05 http://www.imagemagick.org
|
12
14
|
|
@@ -18,4 +20,22 @@
|
|
18
20
|
|
19
21
|
seq -f '%03g.bmp' 4 2 100 | magick -rotate 180
|
20
22
|
|
23
|
+
# => MissingArgument `-rotate' at CLI arg 1 @ fatal/magick-cli.c/ProcessCommandOptions/447.
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
seq -f '%03g.bmp' 4 2 100 | magick - -rotate 180
|
28
|
+
|
29
|
+
# => NoDecodeDelegateForThisImageFormat `' @ error/constitute.c/ReadImage/562.
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
seq -f '%03g.bmp' 4 2 100 | magick convert - -rotate 180
|
36
|
+
|
37
|
+
# convert: NoDecodeDelegateForThisImageFormat `' @ error/constitute.c/ReadImage/562.
|
38
|
+
|
39
|
+
# convert: MissingAnImageFilename `180' @ error/convert.c/ConvertImageCommand/3282.
|
40
|
+
|
21
41
|
```
|
1
version
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,6 +8,10 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
+
Version: ImageMagick 7.0.10-29 Q16 x64 2020-09-05 http://www.imagemagick.org
|
12
|
+
|
13
|
+
|
14
|
+
|
11
15
|
試したこと。
|
12
16
|
|
13
17
|
```sh
|