コード例 #1
0
ファイル: class.asido.php プロジェクト: TiMoChao/xingfu
 /**
  * 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
ファイル: class.asido.php プロジェクト: Rming/novophp
 /**
  * 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());
 }