Search found 4 matches

by Co1m
Thu Sep 25, 2014 3:37 pm
Forum: NConvert
Topic: How to "edit" Multipage Tiff's?
Replies: 14
Views: 5266

Re: How to "edit" Multipage Tiff's?

Hi
right, same conclusion here. Here is what i did:
1. create a Batch-File with this content:

SET INPUT_PATH=C:\Users\kga\Desktop\SCANNER-INPUT
SET PATTERN=*.tif
SET COMMAND=cmd /c C:\D3\xnView\nconvert.exe -quiet -o C:\Users\kga\Desktop\IRFAN-OUTPUT\%% -out tiff -multi -autocontrast -grey 16 ...
by Co1m
Thu Sep 25, 2014 1:36 pm
Forum: NConvert
Topic: How to "edit" Multipage Tiff's?
Replies: 14
Views: 5266

Re: How to "edit" Multipage Tiff's?

Hi Again
i found out, that this solution doesn't work in all cases. I have a folder with x Multipage Tiffs. I want that they become "greyscale" and small. But i want still x Multipage tiffs, not just one.
This command edits and resizes all MultiPage-Tiff-Files into ONE big Multipage Tiff-File ...
by Co1m
Thu Sep 25, 2014 12:14 pm
Forum: NConvert
Topic: How to "edit" Multipage Tiff's?
Replies: 14
Views: 5266

Re: How to "edit" Multipage Tiff's?

Hi
i found a solution by brute forcing :-D

Code: Select all

nconvert.exe -o result.tif -out tiff -multi -autocontrast -grey 16 -c 4 C:\D3\TEMP\TEST1\Original_16MB.tif
With this command you can edit all pages within the tiff.

regards

Co1m
by Co1m
Thu Sep 25, 2014 10:39 am
Forum: NConvert
Topic: How to "edit" Multipage Tiff's?
Replies: 14
Views: 5266

How to "edit" Multipage Tiff's?

Hello
i have a colored Multipage Tiff and i want to greyscale the Multipage Tiff and do some optimazations. Im trying commands like this:
nconvert.exe -multi -ctype grey -dpi 100 -autocontrast C:\D3\TEMP\TEST1\Original_16MB.tif

But the only thing i get is the first Page of my Multipage Tiff. How ...