Search found 3 matches

by wkmiu
2016-04-13T20:17:37-07:00
Forum: Magick.NET
Topic: File Size Problem From Single Page Tiffs to Multiple Page Tiff
Replies: 4
Views: 15233

Re: File Size Problem From Single Page Tiffs to Multiple Page Tiff

As I mentioned before, I tried several compression methods but the output size is not satisfactory.

I use the following code to do the JEPG compression, the file size of the output multiple page tiff is around 600MB.
JPEG2000 also return similar file size result

using (MagickImageCollection ...
by wkmiu
2016-04-12T23:49:07-07:00
Forum: Magick.NET
Topic: File Size Problem From Single Page Tiffs to Multiple Page Tiff
Replies: 4
Views: 15233

Re: File Size Porblem From Single Page Tiffs to Multiple Page Tiff

C:\Program Files\ImageMagick-6.9.3-Q16>identify.exe -verbose 000019.tif
Image: 000019.tif
Format: TIFF (Tagged Image File Format)
Mime type: image/tiff
Class: DirectClass
Geometry: 2487x3486+0+0
Resolution: 300x300
Print size: 8.29x11.62
Units: PixelsPerInch
Type: TrueColor
Base type ...
by wkmiu
2016-04-12T08:38:58-07:00
Forum: Magick.NET
Topic: File Size Problem From Single Page Tiffs to Multiple Page Tiff
Replies: 4
Views: 15233

File Size Problem From Single Page Tiffs to Multiple Page Tiff

Hi everyone,

I am now study how to save many single page tiff to a mutiple page tif in.NET
Below is the code I used:

For the 26 single page tiff, they are color tif file
using (MagickImageCollection collection = new MagickImageCollection())
{
for (int i = 0; i < 26; i++)
{
MagickImage img ...