NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Mike Grigsby on August 02, 2013, 07:46:48 PM
-
I have just switched over my NetTalk Web apps from ImageEx to Clarion FreeImage, just because it's a little cleaner. But I can't seem to find documentation to tell me what I can do with FreeImage for Clarion.
I used some code Bruce put up to create a thumbnail, but it doesn't really give me the control over producing an image of a specific size.
For example, I need to resize all images to 480 wide and have the height proportional, but I can't seem to get where to do that in the actual FreeImage docs, since they are not Clarion specific. Anyone know if there is actual Clarion template/code docs/help, or how to manage this specific example? Thanks!
-
Hi Mike,
The project DLL itself is documented here;
http://freeimage.sourceforge.net/
specifically - http://downloads.sourceforge.net/freeimage/FreeImage3154.pdf
ClarionFreeimage is a wrapper around that, so using that, and the wrapper together, is probably the best way to determine what's available.
cheers
Bruce
-
Thanks Bruce, I was trying to use more of the hand code stuff. The exact Clarion code is a bit hidden in template code, and the FreeImage docs are not very clear on "here's how to resize an image and specify its size." I'll just grind through it I guess.
-
The ImageEx ThumbNailClass is very nice and pretty simple to use.
Nick
-
Mike,
Here are the methods to resize images, look in freeimcl.inc iImage Interface and you'll find them.
Some methods return the new image in the object, and the ones that have an (iImage dstImage) return the new image in another object via the passed iImage interface.
The source code example program has the most comprehensive use of the methods. Also the rescaling and rotation dialog objects show quite a bit too.
Rescale Procedure(*Real fPercentX, *Real fPercentY, UNSIGNED fiFilter),BOOL,Proc
Rescale Procedure(*Real fPercent, UNSIGNED fiFilter),BOOL,Proc
Rescale Procedure(UNSIGNED nDstWidth, UNSIGNED nDstHeight, UNSIGNED fiFilter),BOOL,Proc
Rescale Procedure(*iImage dstImage, Real fPercent, UNSIGNED fiFilter),BOOL,Proc !New Image is returned in dstImage
Rescale Procedure(*iImage dstImage, UNSIGNED nDstWidth, UNSIGNED nDstHeight, UNSIGNED fiFilter),BOOL,Proc !New Image is returned in dstImage
FitTo Procedure(UNSIGNED nDstWidth, UNSIGNED nDstHeight, UNSIGNED fiFilter=FILTER_BILINEAR, UNSIGNED FitMethod=CFIFIT_BOTH, UNSIGNED limitLongSideTo=0, BOOL maintainAspectRatio=True, BOOL adjustPower2=False),BOOL,Proc
Thumbnail Procedure(*iImage dstImage, UNSIGNED nDstWidth, UNSIGNED fiFilter),BOOL,Proc !New Image is returned in dstImage
Thumbnail Procedure(UNSIGNED nDstWidth, UNSIGNED fiFilter),BOOL,Proc
Thumbnail Procedure(*iImage dstImage, UNSIGNED nMaxPixelSize),BOOL,Proc !New Image is returned in dstImage
Thumbnail Procedure(UNSIGNED nMaxPixelSize),BOOL,Proc
So you'll need a FreeImage object:
fi FreeImageClass
Code
!Load some image into the object
if fi.iImage.Load('someImage.jpg')
!make a 128 px wide image maintaining aspect ratio
fi.iImage.Thumbnail(128, FILTER_BILINEAR) !See freeImg.inc and the freeimage docs on source forge for rescaling filters, there's an appendix that describes them
fi.iImage.SaveAs('someThumbnail.jpg')
end
There are a lot of options, what do you want to do?
Larry Sand
-
Thanks so much Larry. That makes things a lot more clear.
-
You're welcome Mike,
If you document what you find and send it to me I'll see about including it.
Larry Sand