Пример #1
0
 /**
  * Creates a horizontal mirror (flop) by reflecting the pixels around the central Y-axis
  * 
  * @param Asido_Image &$image
  * @return boolean
  *
  * @access public
  * @static
  */
 function flop(&$image)
 {
     return asido::_operation($image, __FUNCTION__, array());
 }
Пример #2
0
 /**
  * Creates a horizontal mirror (flop) by reflecting the pixels around the central Y-axis
  *
  * @param asido_image $image
  * @return boolean
  *
  * @access public
  * @static
  */
 public static function flop(asido_image $image)
 {
     return asido::_operation($image, __FUNCTION__, array());
 }