Replies: 4 comments 3 replies
-
|
sidenote: i think the imagemagick repository is a better place to discuss the usage of magick.
|
Beta Was this translation helpful? Give feedback.
-
|
Check your quotes - you need to use |
Beta Was this translation helpful? Give feedback.
-
|
I think the following command will work:
|
Beta Was this translation helpful? Give feedback.
-
glob *.png | each { magick $in ($in | str replace -r "png$" "webp") | ignoreTo enable to |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have some png to webp png images
try
ls *.png | each {|n| magick $n.name ( $n.name | str replace 'png$' 'webp') }ls *.png | each {|n| magick $n.name ( $n.name | str replace 'png' 'webp') }but fail
how to deal with ?
2024-10-23 new additon
The problem is with
str replacemore again how to fix ?
Beta Was this translation helpful? Give feedback.
All reactions