Search found 48 matches

by punith8626
Fri Aug 18, 2017 2:24 pm
Forum: NConvert
Topic: When i try to convert tiff to jpeg I get exception
Replies: 28
Views: 6057

Re: When i try to convert tiff to jpeg I get exception

Still dint get solution
by punith8626
Tue Aug 08, 2017 10:17 am
Forum: NConvert
Topic: How do i make text darker in the tiff image ?
Replies: 3
Views: 1481

How do i make text darker in the tiff image ?

Hi
I am converting tiff to png and I want the text in tiff should be darker after conversion.
How do i do it ?
by punith8626
Fri Jul 28, 2017 1:52 pm
Forum: NConvert
Topic: When i try to convert tiff to jpeg I get exception
Replies: 28
Views: 6057

Re: When i try to convert tiff to jpeg I get exception

But when i try open this with laserfiche it works fine.
by punith8626
Fri Jul 28, 2017 1:49 pm
Forum: NConvert
Topic: When i try to convert tiff to jpeg I get exception
Replies: 28
Views: 6057

When i try to convert tiff to jpeg I get exception

Hello,

When i try to convert image from tiff to jpg I get below error message.
Here is the command that i have used.
nconvert -out jpeg -o C:\tiff\test.jpg C:\tiff\Release\test.tiff

my_error_exit...<Not a JPEG file: starts with 0x00 0x7b>
my_error_exit...<Not a JPEG file: starts with 0x00 0x7b ...
by punith8626
Fri Jul 14, 2017 12:20 pm
Forum: NConvert
Topic: Is there any way to convert tiff image to valid base64 string ?
Replies: 2
Views: 1778

Is there any way to convert tiff image to valid base64 string ?

Hi

I Have a tiff file located in my local system and I want to convert it to base64 string.
An that base64 string should render the image back properly and it should work in all browsers.
by punith8626
Mon May 29, 2017 9:10 am
Forum: NConvert
Topic: Create multipage file with correct page order
Replies: 1
Views: 867

Create multipage file with correct page order

Hello
if i have a file set like this 1.png,2.png.... 10.png, 11.png etc
If I execute below command I get results with pages as below.Resultent tif contains 1.png,10.png,11.png,2.png like that
nconvert -out tiff -multi -c 7 -overwrite -o C:\tiff\ccc.tif C:\tiff\*.png
but I need to have somthing ...
by punith8626
Thu May 11, 2017 10:39 am
Forum: NConvert
Topic: .tiff file conversion not happening properly.
Replies: 4
Views: 1234

.tiff file conversion not happening properly.

Hi
I have a tiff files in one folder where i need to generate thumbs for those multi tiff file.
Some TIFF files having extension .tif and some have .tiff

When I try to execute below command
nconvert -out png -resize 87 112 -xall -o C:\thumbs\%.png C:\tiff\*.tif

It will convert both .tiff and ...
by punith8626
Wed May 10, 2017 2:31 pm
Forum: NConvert
Topic: How to extract specific pages from multi tiff file
Replies: 2
Views: 1350

How to extract specific pages from multi tiff file

How to extract specific pages from multi tiff file?
I tried with below command but it didn't work.

Code: Select all

nconvert -out png -n 1 2 3  -o C:\uploads\10-05-2017\6F9AA81B-DE97-42AA-859D-BB019190D704\ori\90637256_#.png  C:\uploads\10-05-2017\6F9AA81B-DE97-42AA-859D-BB019190D704\tiff\123.tif 
by punith8626
Thu Mar 23, 2017 1:52 pm
Forum: NConvert
Topic: How to delete particular page of tiff file
Replies: 3
Views: 2163

Re: How to delete particular page of tiff file

I have a copy of nconvert help but for big tiff files its not good to convert all pages and again merge it
by punith8626
Thu Mar 23, 2017 12:21 pm
Forum: NConvert
Topic: How to delete particular page of tiff file
Replies: 3
Views: 2163

How to delete particular page of tiff file

Hello,

What is the command to delete particular page of multi tiff file ?
by punith8626
Mon Mar 13, 2017 1:11 pm
Forum: NConvert
Topic: Where to apply licence in the downloaded nconvert
Replies: 3
Views: 1285

Where to apply licence in the downloaded nconvert

Hello All,

We have purchased licence for nconvert for our Organization.
We still have no Idea on how to ensure that the licence is applied or not ?
There will be key or anything to apply ?

What is the procedure to get licence to apply on downloaded nconvert ?
by punith8626
Mon Feb 20, 2017 10:21 am
Forum: NConvert
Topic: How to rotate file from multipage tiff
Replies: 1
Views: 998

How to rotate file from multipage tiff

Hi,

I need to extract particular page from multi page tiff and rotate the same page in single command how do I do it ?
by punith8626
Mon Feb 20, 2017 10:12 am
Forum: NConvert
Topic: How to extract particular pages of tiff
Replies: 1
Views: 970

How to extract particular pages of tiff

Hello,

I need to extract particular pages of tiff image (more than one page but not all pages).
Here is the command I tried but it wont work.
nconvert -out jpeg -resize 120 150 -page 0,1,2 -o test.jpg test.tif

But for single page it works.
nconvert -out jpeg -resize 120 150 -page 0 -o test.jpg ...