Multipage Tiff Compression
-
- Posts: 10
- Joined: Mon Apr 15, 2013 1:27 pm
Re: Multipage Tiff Compression
Hi,
I'm getting stuck with GDPicture, because i can't mix JPG & CCITT4 within a multipage tiff.
Anychange on improvements here ?
I'm getting stuck with GDPicture, because i can't mix JPG & CCITT4 within a multipage tiff.
Anychange on improvements here ?
-
- Posts: 10
- Joined: Mon Apr 15, 2013 1:27 pm
Multipage Tiff Compression
Reference to: viewtopic.php?t=158&start=15
Hi,
I'm getting stuck with GDPicture, because i can't mix JPG & CCITT4 within a multipage tiff.
Also the JPG pages are much bigger (in size) then a JPG to a single TIFF file
(this is due to the CMYK colorspace in single TIFF ? )
Any change on improvements here ?
Hi,
I'm getting stuck with GDPicture, because i can't mix JPG & CCITT4 within a multipage tiff.
Also the JPG pages are much bigger (in size) then a JPG to a single TIFF file
(this is due to the CMYK colorspace in single TIFF ? )
Any change on improvements here ?
Re: Multipage Tiff Compression
Hello,
This is planned for the V10.
Kind regards,
Loïc
This is planned for the V10.
Kind regards,
Loïc
Re: Multipage Tiff Compression
Hello,
This is planned for the V10.
Kind regards,
Loïc
This is planned for the V10.
Kind regards,
Loïc
-
- Posts: 10
- Joined: Mon Apr 15, 2013 1:27 pm
Re: Multipage Tiff Compression
When is v10 expected to Release ?
We really need this and are forced to use an extra imaging kit, just for this functionallity.
We really need this and are forced to use an extra imaging kit, just for this functionallity.
Re: Multipage Tiff Compression
It will be released within 3 and 6 months.
Different Compression type for tiff MultiPage image
My target is to scan multiple image and need to append/save as tiff image which should have Compression (CCITT T.6), Resolution (300 * 300 dpi) and Dimension (2500 * 3300) but iam getting a tiff image with different Compression (LZW) from second page onwards.
Here is my simple code:
nImageID = axImaging1.GetNativeImage();
axImaging1.TwainSetErrorMessage(false);
axImaging1.TwainSelectFeeder(true);
axImaging1.TiffSaveAsNativeMultiPage((appPath + "Karthik_20130627192535.tif"), GdPicturePro5.TifCompression.CompressionCCITT4);
//'' abouve pice of code will create a tiff image with expected format
axImaging1.CloseImage(nImageID);
axImaging1.TiffCloseNativeMultiPage();
axImaging1.TwainCloseSource();
nImageID = axImaging1.GetNativeImage();
nTiffOriginal1 = axImaging1.TiffCreateMultiPageFromFile("Karthik_20130627192535.tif");
nTiffOriginal2 = axImaging1.TiffCreateMultiPageFromFile("Karthik_201306271925351.tif");
axImaging1.TiffAppendPageFromGdPictureImage(nTiffOriginal1, nTiffOriginal2);
axImaging1.TiffSaveMultiPageToFile(nTiffOriginal1, (appPath + "Karthik_20130627192535_3.tif"), GdPicturePro5.TifCompression.CompressionCCITT4);
I could able to save it correct format when iam tring to save singe page by useing below code;
axImaging1.TiffSaveAsNativeMultiPage(("Karthik_20130627192535.tif"), GdPicturePro5.TifCompression.CompressionCCITT4);
Note:
* It is working fine in Windows XP but iam facing issues in Windows 7 32/64 bit OS.
* I have noticed that second page has in Compression (LZW) from the Microsoft Document Imaging tool.
* axGdViewer1.SetLicenseNumber("XXX");
Please help me to resolve this issue ASAP.
Here is my simple code:
nImageID = axImaging1.GetNativeImage();
axImaging1.TwainSetErrorMessage(false);
axImaging1.TwainSelectFeeder(true);
axImaging1.TiffSaveAsNativeMultiPage((appPath + "Karthik_20130627192535.tif"), GdPicturePro5.TifCompression.CompressionCCITT4);
//'' abouve pice of code will create a tiff image with expected format
axImaging1.CloseImage(nImageID);
axImaging1.TiffCloseNativeMultiPage();
axImaging1.TwainCloseSource();
nImageID = axImaging1.GetNativeImage();
nTiffOriginal1 = axImaging1.TiffCreateMultiPageFromFile("Karthik_20130627192535.tif");
nTiffOriginal2 = axImaging1.TiffCreateMultiPageFromFile("Karthik_201306271925351.tif");
axImaging1.TiffAppendPageFromGdPictureImage(nTiffOriginal1, nTiffOriginal2);
axImaging1.TiffSaveMultiPageToFile(nTiffOriginal1, (appPath + "Karthik_20130627192535_3.tif"), GdPicturePro5.TifCompression.CompressionCCITT4);
I could able to save it correct format when iam tring to save singe page by useing below code;
axImaging1.TiffSaveAsNativeMultiPage(("Karthik_20130627192535.tif"), GdPicturePro5.TifCompression.CompressionCCITT4);
Note:
* It is working fine in Windows XP but iam facing issues in Windows 7 32/64 bit OS.
* I have noticed that second page has in Compression (LZW) from the Microsoft Document Imaging tool.
* axGdViewer1.SetLicenseNumber("XXX");
Please help me to resolve this issue ASAP.
- Attachments
-
- First page is in CCITT 6 and second page is in LZW Compression FORMAT
- Karthik_201306272020592.tif (103.68 KiB) Viewed 11155 times
-
- Karthik_20130627202059.tif (17.7 KiB) Viewed 11155 times
Re: Multipage Tiff Compression
Was this ever implemented?
I have just bought the ultimate edition for quite a substantial amount of money and all the tiff save methods only have one option for compression, and no way to set independent compressions for black&white and colour. The only option I see is "Auto" which saves both colour and black&white in lossless formats, which results in massive multipages.
This post states it would be implemented in version 10.... I'm on 14 and don't see a way?
Kind regards,
Matt
I have just bought the ultimate edition for quite a substantial amount of money and all the tiff save methods only have one option for compression, and no way to set independent compressions for black&white and colour. The only option I see is "Auto" which saves both colour and black&white in lossless formats, which results in massive multipages.
This post states it would be implemented in version 10.... I'm on 14 and don't see a way?
Kind regards,
Matt
-
- Posts: 1
- Joined: Mon Jun 14, 2021 4:25 pm
Re: Multipage Tiff Compression
is there any progress on the second question in the original post?
I am currently evaluating GdPicture as a possible replacement for our current scanning and imaging library.
So far the GdPicture library (vb .net) is looking excellent, but we have hit an issue regarding saving pages to a TIFF file that have different compressions (e.g. CCITT4 for B&W and LZW for colour).
I can only find functions in the library that apply a single compression level to the whole TIFF file,
rather than to the individual pages within the file. As our current library allows this,
and is a feature that our Customers are currently using,
then I would really like to find a way to do this with GdPicture.
So, is there any way to currently do this, or is anything planned?
Many thanks
I am currently evaluating GdPicture as a possible replacement for our current scanning and imaging library.
So far the GdPicture library (vb .net) is looking excellent, but we have hit an issue regarding saving pages to a TIFF file that have different compressions (e.g. CCITT4 for B&W and LZW for colour).
I can only find functions in the library that apply a single compression level to the whole TIFF file,
rather than to the individual pages within the file. As our current library allows this,
and is a feature that our Customers are currently using,
then I would really like to find a way to do this with GdPicture.
So, is there any way to currently do this, or is anything planned?
Many thanks
Re: Multipage Tiff Compression
Hi there,
We've implemented custom compression at page-level since few years now.
Please find here and example:
https://www.gdpicture.com/guides/gdpicture/Ge ... 0page.html
With best regards,
Loïc
We've implemented custom compression at page-level since few years now.
Please find here and example:
https://www.gdpicture.com/guides/gdpicture/Ge ... 0page.html
With best regards,
Loïc
Re: Multipage Tiff Compression
Hello,
We're sorry about the delay.
The feature has been implemented, you will find an example of the usage here: https://www.gdpicture.com/guides/gdpict ... 0page.html
With best,
Fabio
We're sorry about the delay.
The feature has been implemented, you will find an example of the usage here: https://www.gdpicture.com/guides/gdpict ... 0page.html
With best,
Fabio
Re: Multipage Tiff Compression
I hope this feature will be available within 2 month.
It is very hard for us to implement this feature without rewriting all our multipage tiff plugin. 9apps
cartoon hd
It is very hard for us to implement this feature without rewriting all our multipage tiff plugin. 9apps
cartoon hd
Who is online
Users browsing this forum: No registered users and 0 guests