wideimage problems?
September 19th, 2009
Just looked at search terms leading people to my blog and found a few of “wideimage problem php”. Just to let you know, there are several support channels available if you get stuck using the library or find a bug. So, please, don’t let me guess what your problems are.

for some reason, running wideimage php 5.3.2 using MAMP keeps giving me WideImage_Exception error, complaining the class not found in Image.php(30).
Moving the following lines to above the: require_once WideImage::path() . ‘Image.php’;
seems to fixed it. It’s probably best to put the wideimage exceptions to a sepearte class file?
thanks for the great work.
/**
* Base Exception class
*
* @package Exceptions
**/
class WideImage_Exception extends RuntimeException {}
/**
* @package Exceptions
*/
class WideImage_InvalidImageHandleException extends WideImage_Exception {}
/**
* @package Exceptions
*/
class WideImage_InvalidImageSourceException extends WideImage_Exception {}
Thanks for reporting this, I will fix it in the next release. Although, please use the official support channels next time.