Aurigma Forums
»
Graphics Mill
»
Discussions – Graphics Mill
»
Colour to Black and white/ Sepia image conversion
Rank: Member
Groups: Guest
Joined: 5/27/2005(UTC) Posts: 4
|
Hi,
How can I convert a colour image to a high quality black and white or sepia image?
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
Hello. If you want to convert your image to gray scale colors you should change image pixel format to gray scale: Code:bitmap.ColorManagement.ConvertToContinuous(Aurigma.GraphicsMill.ColorSpace.GrayScale, false, false);
Sepia image you can create by the following code snippet: Code:bitmap.ColorManagement.ConvertToContinuous(Aurigma.GraphicsMill.ColorSpace.Rgb, false, false);
bitmap.ColorAdjustment.Desaturate();
float [] colorBalance = {0.0F, 0.05F, 0.1F, 0.0F};
bitmap.ColorAdjustment.ChannelBalance(colorBalance);
Edited by user Sunday, December 23, 2007 6:14:59 PM(UTC)
| Reason: Not specified |
|
|
|
|
Rank: Member
Groups: Guest
Joined: 5/27/2005(UTC) Posts: 4
|
|
|
|
|
Rank: Newbie
Groups: Guest
Joined: 5/15/2013(UTC) Posts: 2
|
This information is now obsolete with v6. What is the new correct method?
If it still uses the .ColorAdjustment.ChannelBalance() method, which now takes two parameters, can you just say what are the best parameters for sepia?
Thanks.
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 12/19/2012(UTC) Posts: 164
Was thanked: 8 time(s) in 8 post(s)
|
Hi,
I have replied you in the support case, that you created. |
Best regards, Vitaly Kustov Aurigma Technical Support
|
|
|
|
Rank: Newbie
Groups: Guest
Joined: 5/15/2013(UTC) Posts: 2
|
It would help other people if the outdated information were also posted here. No harm in doing that too, right?
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 12/19/2012(UTC) Posts: 164
Was thanked: 8 time(s) in 8 post(s)
|
Dear customers, You can use the attached sample to sepia images with Graphics Mill 6. |
Best regards, Vitaly Kustov Aurigma Technical Support
|
|
|
|
Aurigma Forums
»
Graphics Mill
»
Discussions – Graphics Mill
»
Colour to Black and white/ Sepia image conversion
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.