Exemplo n.º 1
0
 /**
  * scales given image to given size
  * 
  * @param  Tinebase_Model_Image $_image
  * @param  int    $_width desitination width
  * @param  int    $_height destination height
  * @param  int    $_ratiomode
  * @throws  Tinebase_Exception_InvalidArgument
  */
 public static function resize(Tinebase_Model_Image $_image, $_width, $_height, $_ratiomode)
 {
     $_image->resize($_width, $_height, $_ratiomode);
 }