scantailor-cli How to set image size.

Scan Tailor specific announcements, releases, workflows, tips, etc. NO FEATURE REQUESTS IN THIS FORUM, please.

Moderator: peterZ

Post Reply
elviejo
Posts: 1
Joined: 27 Jun 2012, 02:42
Number of books owned: 0
Country: Mexico

scantailor-cli How to set image size.

Post by elviejo »

I'm using scantailor-cli to process images one by one.
the problem with this approach is that, in the end all images
end up being of different size. since the size is proportional
to the content box that was found.

However I do know that all this images should in fact be the same size
at the end
Is there a configuration option to set the final size of the image?

For reference this is the command line I'm using:

Code: Select all

scantailor-cli -v    \
--layout=1.5  \
--dpi=264  \
--output-dpi=200  \
--content-detection=109x267:1482x2134  \
--margins-top=5  \
--margins-bottom=5  \
--margins-left=10  \
--margins-right=10  \
--alignment-horizontal=center  \
--alignment-vertical=top \
--threshold=9 \
/home/agarcia/Dropbox/Camera\ Uploads/10-waitingScanTailor/$imagefile \
/home/agarcia/Dropbox/Camera\ Uploads/20-waitingOCR/
pejuko
Posts: 30
Joined: 17 Feb 2011, 17:06

Re: scantailor-cli How to set image size.

Post by pejuko »

To keep same size for all images you need either process them all togather or try use --content-box=109x267:1482x2134 parameter instead of --content-detection (this parameter is for something else :-) ).
murgen
Posts: 19
Joined: 22 Sep 2012, 03:45
E-book readers owned: Kindle
Number of books owned: 1000
Country: Belgium

Re: scantailor-cli How to set image size.

Post by murgen »

2 years later reply but the topic is still upto date this Feb 2014.

I use mogrify from Imagemagick to resize all the images :

Code: Select all

cd $IMG_DIR_ST_OUT
for f in `ls`
do
  if [ -f  $IMG_DIR_ST_OUT/$f ];then
       mogrify -resize 2130x3767 $f
  fi
done
Post Reply