in license.php the function function imgdrawLine()
the param $y0 is sometimes passed as a string and that will cause php to flag a warning on line 102 when the 3 param passed is not converted to a double (because it is not manipulated with + or - radius such as line 100 or 101 are)
adding: $y0 = doubleval($y0); somewhere before, such as line 94, fixes this warning.