本文整理匯總了PHP中Intervention\Image\Image::line方法的典型用法代碼示例。如果您正苦於以下問題:PHP Image::line方法的具體用法?PHP Image::line怎麽用?PHP Image::line使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Intervention\Image\Image
的用法示例。
在下文中一共展示了Image::line方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: line
/**
* Draw a line in current image starting at point 1 and ending at point 2
*
* @param string $color
* @param integer $x1
* @param integer $y1
* @param integer $x2
* @param integer $y2
* @return \Intervention\Image\Image
* @static
*/
public static function line($color, $x1 = 0, $y1 = 0, $x2 = 10, $y2 = 10)
{
return \Intervention\Image\Image::line($color, $x1, $y1, $x2, $y2);
}