The getVersion function for the ImageMagick class returns an array, with two values, one linked to the key value of 'versionNumber' and another linked to the key value of 'versionString'. The version number provides a simple integer, while the string provides the actual x.y.z version number, the release date, and the URL for the ImageMagick site.Today (May 8, 2012), when calling this function, the results are...Number: 1654String: ImageMagick 6.7.6-8 2012-05-02 Q16 http://www.imagemagick.orgLast month (around April 15, 2012), when calling this function, the results were...Number: 1654String: ImageMagick 6.7.6-1 2012-04-09 Q16 http://www.imagemagick.orgSo, I'm not sure why the "Number" value has not changed, but the "String" value is definitely responding to changes in time.The code for producing these results:<?php $imagick_version = Imagick::getVersion(); $imagick_version_number = $imagick_version['versionNumber']; $imagick_version_string = $imagick_version['versionString']; print("Number: $imagick_version_number"); print("<br>"); print("String: $imagick_version_string");?>