Hi, I am using the trial software to see if it can help me display images with an ICC profile applied. I am using VB.NET in Visual Studio 2005. I have done the following:
Set a gdPicture control on a form
Set an Imaging control on the same form
To display the image, I do this:
AxImaging1.CreateImageFromFile(sFilename)
lStatus = AxImaging1.ICCAddFromFile("C:\WINDOWS\system32\spool\drivers\color\profile.icm")
AxImaging1.DisplayImageOnHwnd(gdPicture1.hwnd, 0, 0, AxImaging1.GetWidth, AxImaging1.GetHeight)
My question simply is - is this sufficient to apply the profile to the displayed image, or is there something else I need to do? I am using real profiles, but I do not see any visible changes to the displayed image with and without the profile.
