run script for batch convert files
run script for batch convert files
Hi,
new user here/noob, unfamiliar with image magic, in Cygwin/windows.
my goal is to auto crop some scanned images using the autotrim.sh
how do I provide the source dir for the scanned jpg images and the output dir for the cropped ones?
ex: autotrim.sh -m o -f 30 <input_source_dir_jpg> <output_dir_jpg>
Thanks in advance
new user here/noob, unfamiliar with image magic, in Cygwin/windows.
my goal is to auto crop some scanned images using the autotrim.sh
how do I provide the source dir for the scanned jpg images and the output dir for the cropped ones?
ex: autotrim.sh -m o -f 30 <input_source_dir_jpg> <output_dir_jpg>
Thanks in advance
Re: run script for batch convert files
to be precise i use:
-autotrim.sh -f 30 /cygdrive/c/test/*.jpg /cygdrive/c/test_out/
and i get
line 216:bc command not found
line 217:-eq unary operator expected
convert.exe unable to open image /cygdrive/c/test/t81.jpg
no such file or directory
-autotrim.sh -f 30 /cygdrive/c/test/*.jpg /cygdrive/c/test_out/
and i get
line 216:bc command not found
line 217:-eq unary operator expected
convert.exe unable to open image /cygdrive/c/test/t81.jpg
no such file or directory
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: run script for batch convert files
Have you installed bc? If not, that's the problem. Install it from the Cygwin package. I suggest you also install the other common utilities: awk etc. See my web pages on "Cygwin".uni wrote:line 216:bc command not found
snibgo's IM pages: im.snibgo.com
Re: run script for batch convert files
thanks for bc, downloaded and ok
issue with "convert.exe unable to open image /cygdrive/c/test/t81.jpg
no such file or directory" still exists
what is the proper sytnax for input and output?
issue with "convert.exe unable to open image /cygdrive/c/test/t81.jpg
no such file or directory" still exists
what is the proper sytnax for input and output?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: run script for batch convert files
Perhaps you don't have that file or directory. What does...
... say?
EDIT: I should add: I think "autotrim" needs a single file for input, without wildcards.
Code: Select all
ls /cygdrive/c/test/t81.jpg
EDIT: I should add: I think "autotrim" needs a single file for input, without wildcards.
snibgo's IM pages: im.snibgo.com
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: run script for batch convert files
Correct! One input and one output. So you would have to loop over each image you want to process.snibgo wrote:EDIT: I should add: I think "autotrim" needs a single file for input, without wildcards.
You also have to run the script from a Cygwin terminal window and not from a CMD window.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: run script for batch convert files
It can be run from a CMD window by prefixing the bash command with "bash". Anyhow, the OP's script is running, so that's not the problem. Removing the wildcard may fix it.
snibgo's IM pages: im.snibgo.com
Re: run script for batch convert files
Thank you for helping.
i am running via cygwin terminal
when tried
"mla@mla-PC /cygdrive/c/ImageM/bin
$ ./autotrim.sh -f 30 -C black /cygdrive/c/ebe_theo/8.jpg /cygdrive/c/ebe_theo_out/8t.jpg"
i got
"convert.exe: unable to open image '/cygdrive/c/ebe_theo/8.jpg': No such file or directory @ error/blob.c/OpenBlob/3146.
convert.exe: no images defined `./atrim_A_3164.mpc' @ error/convert.c/ConvertImageCommand/3275.
--- FILE /cygdrive/c/ebe_theo/8.jpg DOES NOT EXIST OR IS NOT AN ORDINARY FILE, NOT READABLE OR HAS ZERO size ---
"
i am running via cygwin terminal
when tried
"mla@mla-PC /cygdrive/c/ImageM/bin
$ ./autotrim.sh -f 30 -C black /cygdrive/c/ebe_theo/8.jpg /cygdrive/c/ebe_theo_out/8t.jpg"
i got
"convert.exe: unable to open image '/cygdrive/c/ebe_theo/8.jpg': No such file or directory @ error/blob.c/OpenBlob/3146.
convert.exe: no images defined `./atrim_A_3164.mpc' @ error/convert.c/ConvertImageCommand/3275.
--- FILE /cygdrive/c/ebe_theo/8.jpg DOES NOT EXIST OR IS NOT AN ORDINARY FILE, NOT READABLE OR HAS ZERO size ---
"
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: run script for batch convert files
And what does ls say about that file?
snibgo's IM pages: im.snibgo.com
Re: run script for batch convert files
ls: /cygdrive/c/test/8.jpg
/cygdrive/c/test/8.jpg
also the convert.exe Windows command of IM, works fine with this image file.
/cygdrive/c/test/8.jpg
also the convert.exe Windows command of IM, works fine with this image file.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: run script for batch convert files
I don't understand. Are you running two different versions of IM, one for CMD and the other for bash? Why?uni wrote:also the convert.exe Windows command of IM, works fine with this image file.
What happens if you try to convert the file in bash, eg:
Code: Select all
convert /cygdrive/c/test/8.jpg x.png
snibgo's IM pages: im.snibgo.com
Re: run script for batch convert files
I'm running two different versions because I want to test the syntax and the image file. My goal is to use the script eventually.
The convert command in cygwin doesnt work either.
The error message is the same "unable to open image '/cygdrive/c/ebe_theo/1.jpg' no such file or directory.
So could it be something wrong about the whole package and not just the script? I have downloaded the lastest IM-cygwin.gz file.
In Windows CMD the convert command runs fine with the same image file.
The convert command in cygwin doesnt work either.
The error message is the same "unable to open image '/cygdrive/c/ebe_theo/1.jpg' no such file or directory.
So could it be something wrong about the whole package and not just the script? I have downloaded the lastest IM-cygwin.gz file.
In Windows CMD the convert command runs fine with the same image file.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: run script for batch convert files
Nothing wrong with running different versions. I run about ten different versions (different Q numbers, with/without HDRI, v6 or v7, with/without modules). They all work fine under CMD or bash. But I don't understand why you run one under CMD and a different one under bash.
Does IM work at all for you under bash? Try basic tests like:
What version is it? What version do you run under CMD?
What is this? Where did you get it?uni wrote:I have downloaded the lastest IM-cygwin.gz file.
Does IM work at all for you under bash? Try basic tests like:
Code: Select all
convert rose: r.png
convert -version
snibgo's IM pages: im.snibgo.com
Re: run script for batch convert files
i got the package cygwin from here:
https://www.imagemagick.org/script/download.php > https://www.imagemagick.org/download/bi ... win.tar.gz
My cygwin convert -version output is: "7.0.7-8 Q16 x64 2017-10-14"
Isnt really a way to recursively convert the contents of a folder full of .JPG files and recreate the folder structure with the new files?
Do I have to do it one-by-one?
https://www.imagemagick.org/script/download.php > https://www.imagemagick.org/download/bi ... win.tar.gz
My cygwin convert -version output is: "7.0.7-8 Q16 x64 2017-10-14"
Isnt really a way to recursively convert the contents of a folder full of .JPG files and recreate the folder structure with the new files?
Do I have to do it one-by-one?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: run script for batch convert files
Ah, I didn't know there was an official IM Cygwin package. It makes sense to have one, for the Cygwin installer to use, but I don't know if it differs from the normal Windows distribution.
Many commands and scripts operate on only one file at a time. You can put it inside a shell "for" loop for all the files in a directory, perhaps including subdirectories. IM won't create directories, so you should do that in your script.
Many commands and scripts operate on only one file at a time. You can put it inside a shell "for" loop for all the files in a directory, perhaps including subdirectories. IM won't create directories, so you should do that in your script.
snibgo's IM pages: im.snibgo.com