Search found 17 matches

by sergiokapone
2017-06-26T12:13:04-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

fmw42 wrote: 2017-06-26T12:08:48-07:00
Can I avoid decompressing stage?
ImageMagick will decompress ...
It's a pity.

Thank you for help.
by sergiokapone
2017-06-26T12:03:51-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

fmw42 wrote: 2017-06-26T11:59:51-07:00 I am not sure, but they probably get enlarged when converting to ImageMagick internal format. Also your tiff files may be compressed and during the conversion, ImageMagick must decompress them.
My tiffs compressed with CCITTFAX4. Can I avoid decompressing stage?
by sergiokapone
2017-06-26T11:56:29-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

fmw42 wrote: 2017-06-26T11:50:45-07:00 ImageMagick will read all the files into memory as those temp files.
Ok, but why those temp files so huge and numerous? My input files much smaller. It is strange that IM create one temp file with 60 Mb per one input file 10 Kb.
by sergiokapone
2017-06-26T11:32:50-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

I also have tryed nconvert from here

It combine much faster and without using additional disk space

Code: Select all

nconvert -o newfile.tiff -multi -out tiff -c 7  *.tiff
by sergiokapone
2017-06-26T11:15:59-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

Those files should be deleted automatically. If they do not, then there is something wrong. You can delete them. See if they get left behind again. Yes, the files deleted automatically after combining if the number of files is small. But if number of files over 400, I get system warning about free ...
by sergiokapone
2017-06-26T10:36:41-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

fmw42 wrote: 2017-06-26T09:19:25-07:00 Use magick rather than convert if you are on IM 7.
Ok.

But why in my %Temp% folder many files magick-6844AaBOq7CoiJCI apear with ~60 Mb during conversion folder with CCITTFAX4 (~10 Kb) tiff files ?

If I start to combine over 400 files, all free disk space (9 Gb) quickly disappears
by sergiokapone
2017-06-26T00:21:16-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

Possible bug?
by sergiokapone
2017-06-25T12:34:53-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

I use batch file

Code: Select all

@Echo Off & CLS
::mode con:cols=80 lines=40
REM  ===== Variables Setup ==========
setLocal
set pathImageMagik=%BookShop%\ImageMagick\
"%pathImageMagik%convert" @%1 a.tif
where %1 is my filelist.txt
by sergiokapone
2017-06-25T12:08:55-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

How can I modyfy my policy.xml?
by sergiokapone
2017-06-25T11:50:37-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

Unfortunantly with newest version of IM I get an error

Code: Select all

convert: UnableToOpenBlob '@C:c:\Downloads\0030.tif': Invalid argument @ error/blob.c/OpenBlob/3093.
by sergiokapone
2017-06-25T10:41:43-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Re: Creating multipage Tiff from file list

GeeMack, thank you.
by sergiokapone
2017-06-25T02:04:07-07:00
Forum: Users
Topic: Creating multipage Tiff from file list
Replies: 23
Views: 19782

Creating multipage Tiff from file list

Suppose I have file list filelelist.txt

Code: Select all

C:\a\001.tiff
C:\a\002.tiff
C:\a\003.tiff
C:\a\004.tiff
C:\a\005.tiff
...
C:\a\100.tiff
I need to create from those files a single multipage tiff.

How can I make it?
by sergiokapone
2012-10-23T23:50:25-07:00
Forum: Users
Topic: Processing of scaned bookpages
Replies: 8
Views: 9213

Re: Processing of scaned bookpages

fmw42 wrote:Sorry I an not sure I understand.

The number of pixels and dpi resolution is in the IM verbose

identify -verbose image

or can be extracted more directly from http://www.imagemagick.org/script/escape.php
You understand me correctly.
And again, you helped me. Thank you.
by sergiokapone
2012-10-23T11:38:18-07:00
Forum: Users
Topic: Processing of scaned bookpages
Replies: 8
Views: 9213

Re: Processing of scaned bookpages

fmw42 wrote:No spaces between 10 and % and in Windows you must escape the % to %%. So -fuzz 10%%
Thank you very mach.

How I can determine a only a page size of an image in pix and dpi?
by sergiokapone
2012-10-22T22:42:14-07:00
Forum: Users
Topic: Processing of scaned bookpages
Replies: 8
Views: 9213

Re: Processing of scaned bookpages

fmw42 , thank you! It is work! Just noticed, in a command line it's works, but that does not work in batch file. The files are processed, but the output files are the same (only with changed date) @echo off title Trimmer setlocal set LIBRE=%BookShop%\DJVULIBRE\ set pagenumber=1 if exist %~dpn1 del ...