Rank: Member
Groups: Guest
Joined: 7/3/2005(UTC) Posts: 6
Thanks: 1 times
|
Is it possible to extract the embedded icc profil and save it on the disk.
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 7/28/2003(UTC) Posts: 1,660
Thanks: 5 times Was thanked: 76 time(s) in 74 post(s)
|
Hello, Sure, for example please read following topic: Loading and Saving Files with ICC ProfilesHere is the slightly modified code sample from that topic: Code:Dim bitmap As New Aurigma.GraphicsMill.Bitmap
bitmap.ColorManagement.ColorManagementEnabled = True
bitmap.Load("C:\Horses.jpg")
System.IO.File.Copy(bitmap.ColorProfile.FileName, "c:\ExtractedProfile.ICC")
Code:Aurigma.GraphicsMill.Bitmap bitmap =
new Aurigma.GraphicsMill.Bitmap();
bitmap.ColorManagement.ColorManagementEnabled = true;
bitmap.Load(@"C:\Horses.jpg");
System.IO.File.Copy(bitmap.ColorProfile.FileName, @"c:\ExtractedProfile.ICC");
Edited by user 17 years ago
| Reason: Not specified |
Best regards, Fedor Skvortsov
|
|
|
|
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)
|
By the way the upcoming version of Graphics Mill for .NET will include the feature to extract color profiles without reading bitmaps into memory. |
|
|
|
|
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.