Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Syphos  
#1 Posted : Wednesday, January 30, 2008 12:52:59 AM(UTC)
Syphos

Rank: Member

Groups: Member
Joined: 9/26/2007(UTC)
Posts: 3

I can convert 8 bit TIFF image without any problem using ConvertToContinuous, but when I try the same code with a 16 bit TIFF image, I get an unexpected exception asnd I am asked to contact Aurigma's support... If I try to dispose of the image after that, everything freezes. And yes, I do have IsExtended as true in the function.

Alex Kon  
#2 Posted : Thursday, January 31, 2008 5:26:02 PM(UTC)
Alex Kon

Rank: Advanced Member

Groups: Member
Joined: 1/31/2005(UTC)
Posts: 458

Was thanked: 5 time(s) in 5 post(s)
Hello,

I've tried the following code with the latest release:

Code:
Aurigma.GraphicsMill.Bitmap bmp = new Aurigma.GraphicsMill.Bitmap();
bmp.Load(@"x:/allformats/64bppArgb.tif");
bmp.ColorManagement.ConvertToContinuous(
	Aurigma.GraphicsMill.ColorSpace.Cmyk, 
	bmp.HasAlpha, 
	bmp.IsExtended);
bmp.ColorManagement.ConvertToContinuous(
	Aurigma.GraphicsMill.ColorSpace.Rgb, 
	bmp.HasAlpha, 
	bmp.IsExtended);
bmp.ColorManagement.ConvertToContinuous(
	Aurigma.GraphicsMill.ColorSpace.GrayScale, 
	bmp.HasAlpha, 
	bmp.IsExtended);
bmp.ColorManagement.ConvertToContinuous(
	Aurigma.GraphicsMill.ColorSpace.Cmyk, 
	bmp.HasAlpha, 
	bmp.IsExtended);
bmp.ColorManagement.ConvertToContinuous(
	Aurigma.GraphicsMill.ColorSpace.GrayScale, 
	bmp.HasAlpha, 
	bmp.IsExtended);

It works as it should. So, the problem is more complicated. Could you post here (or submit case) code sample which reproduces the problem and test TIFF file?

Edited by user Thursday, May 22, 2008 2:28:56 PM(UTC)  | Reason: Not specified

Dmitry  
#3 Posted : Tuesday, February 5, 2008 5:33:14 PM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
Hello,

We worked out the problem. The exception was thrown if you convert an image with extended pixel format (16 bits per channel) to another pixel format using color management.

The problem is resolved in the current release 4.5.17. You can download it from our site.

Sincerely yours,

Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.