Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/imagine/imagine/lib/Imagine/Draw/DrawerInterface.php
Строк: 241
<?php

/*
 * This file is part of the Imagine package.
 *
 * (c) Bulat Shakirzyanov <mallluhuct@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace ImagineDraw;

use 
ImagineImageAbstractFont;
use 
ImagineImageBoxInterface;
use 
ImagineImagePaletteColorColorInterface;
use 
ImagineImagePointInterface;
use 
ImagineExceptionRuntimeException;

/**
 * Interface for the drawer
 */
interface DrawerInterface
{
    
/**
     * Draws an arc on a starting at a given x, y coordinates under a given
     * start and end angles
     *
     * @param PointInterface $center
     * @param BoxInterface   $size
     * @param integer        $start
     * @param integer        $end
     * @param ColorInterface $color
     * @param integer        $thickness
     *
     * @throws RuntimeException
     *
     * @return DrawerInterface
     */
    
public function arc(PointInterface $centerBoxInterface $size$start$endColorInterface $color$thickness 1);

    
/**
     * Same as arc, but also connects end points with a straight line
     *
     * @param PointInterface $center
     * @param BoxInterface   $size
     * @param integer        $start
     * @param integer        $end
     * @param ColorInterface $color
     * @param Boolean        $fill
     * @param integer        $thickness
     *
     * @throws RuntimeException
     *
     * @return DrawerInterface
     */
    
public function chord(PointInterface $centerBoxInterface $size$start$endColorInterface $color$fill false$thickness 1);

    
/**
     * Draws and ellipse with center at the given x, y coordinates, and given
     * width and height
     *
     * @param PointInterface $center
     * @param BoxInterface   $size
     * @param ColorInterface $color
     * @param Boolean        $fill
     * @param integer        $thickness
     *
     * @throws RuntimeException
     *
     * @return DrawerInterface
     */
    
public function ellipse(PointInterface $centerBoxInterface $sizeColorInterface $color$fill false$thickness 1);

    
/**
     * Draws a line from start(x, y) to end(x, y) coordinates
     *
     * @param PointInterface $start
     * @param PointInterface $end
     * @param ColorInterface $outline
     * @param integer        $thickness
     *
     * @return DrawerInterface
     */
    
public function line(PointInterface $startPointInterface $endColorInterface $outline$thickness 1);

    
/**
     * Same as arc, but connects end points and the center
     *
     * @param PointInterface $center
     * @param BoxInterface   $size
     * @param integer        $start
     * @param integer        $end
     * @param ColorInterface $color
     * @param Boolean        $fill
     * @param integer        $thickness
     *
     * @throws RuntimeException
     *
     * @return DrawerInterface
     */
    
public function pieSlice(PointInterface $centerBoxInterface $size$start$endColorInterface $color$fill false$thickness 1);

    
/**
     * Places a one pixel point at specific coordinates and fills it with
     * specified color
     *
     * @param PointInterface $position
     * @param ColorInterface $color
     *
     * @throws RuntimeException
     *
     * @return DrawerInterface
     */
    
public function dot(PointInterface $positionColorInterface $color);

    
/**
     * Draws a polygon using array of x, y coordinates. Must contain at least
     * three coordinates
     *
     * @param array          $coordinates
     * @param ColorInterface $color
     * @param Boolean        $fill
     * @param integer        $thickness
     *
     * @throws RuntimeException
     *
     * @return DrawerInterface
     */
    
public function polygon(array $coordinatesColorInterface $color$fill false$thickness 1);

    
/**
     * Annotates image with specified text at a given position starting on the
     * top left of the final text box
     *
     * The rotation is done CW
     *
     * @param string         $string
     * @param AbstractFont   $font
     * @param PointInterface $position
     * @param integer        $angle
     * @param integer        $width
     *
     * @throws RuntimeException
     *
     * @return DrawerInterface
     */
    
public function text($stringAbstractFont $fontPointInterface $position$angle 0$width null);
}
Онлайн: 2
Реклама