wolfbartels Posted April 28, 2010 Posted April 28, 2010 On JPG-files of some cameras there are both EXIF-Parameters "UserComments" and "Comment", causing the UDF _ImageGetParam() to become confused, because it searches only for Comment. An easy solution is to include the inicial @LF and final "=" at $aParam when searching in $aData. ;=============================================================================== ; Get param by name from function result ;=============================================================================== Func _ImageGetParam($sData, $sParam) Local $nParamPos = StringInStr(@LF & $sData,@LF & $sParam & "=") ; @LF and "=" added If $nParamPos Then $sData = StringTrimLeft($sData, $nParamPos + StringLen($sParam)) Return StringLeft($sData, StringInStr($sData, @LF) - 1) Endif Return "" EndFuncNow the Func will always give a correct Return.
PsaltyDS Posted April 28, 2010 Posted April 28, 2010 The function _ImageGetParam() is not part of the AutoIt distribution, so a BugTrac is not appropriate. The issue should be addressed in the topic that defines/supports that UDF. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
zorphnog Posted April 28, 2010 Posted April 28, 2010 Oh. Sorry I was thinking this was included with AutoIt, but I was mistaken. Kind of pointless not to post it in the thread about the UDF.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now