-
ZoomBlur cannot be found in compiled dll
In my delphi implementation I declare:
function _is5_ZoomBlur(pInput: pointer;
uWidth, uHeight: cardinal;
uBpp: cardinal;
uInRowStride: cardinal;
pOutput: pointer;
uOutRowStride: cardinal;
fAmount: double; //angle of motion and length of blur arc
pCenter: PImgPoint;
uFlags: cardinal): boolean; stdcall; external '_ISource50.dll';
When I try to call the function I get an error that the entry point with that name cannot be found. I have tried other functions (convolution and gaussianblur) and they work. Is it possible you missed to include this function? I am using 5.0.6.4
-
Re: ZoomBlur cannot be found in compiled dll
good catch. yes, it looks like that function isn't being exported from the DLL.
i'll get a new build out later today.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules