First, I don't think there is a FreeImage forum for Clarion users is there?
I am creating a thumbnail image (so it displays properly in the space allocated on my browse). So in the form, I have the following code, but it creates a really fuzzy image (not sharp). Does anyone know of a solution for this? I have played with the filters a bit, and it doesn't seem to help. Thanks!
If p_web.GetValue('USE:PortraitImage')
If ThumbImage.iImage.Load(clip(p_web.site.WebFolderPath) & '\' & p_web.GetValue('USE:PortraitImage'))
ThumbImage.iImage.Thumbnail(220, FILTER_BSPLINE)
ThumbImage.iImage.SaveAs(clip(p_web.site.WebFolderPath) & '\' & p_web.GetValue('USE:PortraitImage'))
p_web.SetValue('USE:PortraitImage',p_web.GetValue('USE:PortraitImage'))
USE:PortraitImage = p_web.GetValue('USE:PortraitImage')
End
end