Source for file Driver.class.php
Documentation is available at Driver.class.php 
 * This work is hereby released into the Public Domain.  
 * To view a copy of the public domain dedication,  
 * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to  
 * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.  
require_once dirname(__FILE__ ). "/../Graph.class.php";  
 * @package linea21.externals  
     * The FontDriver object that will be used to draw text  
     * The FontDriver object that will be used to draw text  
     * A string representing the type of the driver  
     * Initialize the driver for a particular awImage object  
    abstract public function init(awImage $image);  
     * Initialize the Driver for a particular FileImage object  
     * @param awFileImage $fileImage The FileImage object to work on  
     * @param string $file Image filename  
    abstract public function initFromFile(awFileImage $fileImage, $file);  
     * @param int $width Image width  
     * @param int $height Image height  
     * Inform the driver of the position of your image  
     * @param float $x Position on X axis of the center of the component  
     * @param float $y Position on Y axis of the center of the component  
     * Inform the driver of the position of your image  
     * This method need absolutes values  
     * @param int $x Left-top corner X position  
     * @param int $y Left-top corner Y position  
     * Move the position of the image  
     * @param int $x Add this value to X axis  
     * @param int $y Add this value to Y axis  
     * Inform the driver of the size of your image  
     * Height and width must be between 0 and 1.  
     * @param int $w Image width  
     * @param int $h Image height  
     * @return array Absolute width and height of the image  
    abstract public function setSize($w, $h);  
     * Inform the driver of the size of your image  
     * You can set absolute size with this method.  
     * @param int $w Image width  
     * @param int $h Image height  
     * Get the size of the component handled by the driver  
     * @return array Absolute width and height of the component  
    abstract public function getSize();  
     * Turn antialiasing on or off  
     * When passed a Color object, returns the corresponding  
     * color identifier (driver dependant).  
     * @param awColor $color A Color object  
     * @return int $rgb A color identifier representing the color composed of the given RGB components  
    abstract public function getColor(awColor $color);  
     * @param awImage $image Image  
     * @param int $p1 Image top-left point  
     * @param int $p2 Image bottom-right point  
    abstract public function copyImage(awImage $image, awPoint $p1, awPoint $p2);  
     * @param awImage $image Image  
     * @param int $d1 Destination top-left position  
     * @param int $d2 Destination bottom-right position  
     * @param int $s1 Source top-left position  
     * @param int $s2 Source bottom-right position  
     * @param bool $resample Resample image ? (default to TRUE)  
    abstract public function copyResizeImage(awImage $image, awPoint $d1, awPoint $d2, awPoint $s1, awPoint $s2, $resample =  TRUE);  
     * @var awText $text Text to print  
     * @param awPoint $point Draw the text at this point  
     * @param int $width Text max width  
    abstract public function string(awText $text, awPoint $point, $width =  NULL);  
     * @param awColor $color Pixel color  
    abstract public function point(awColor $color, awPoint $p);  
     * @param awColor $color Line color  
     * @param int $thickness Line tickness  
    abstract public function line(awColor $color, awLine $line);  
     * @param awColor $color Arc color  
     * @param awPoint $center Point center  
     * @param int $width Ellipse width  
     * @param int $height Ellipse height  
     * @param int $from Start angle  
     * @param int $to End angle  
    abstract public function arc(awColor $color, awPoint $center, $width, $height, $from, $to);  
     * Draw an arc with a background color  
     * @param awColor $color Arc background color  
     * @param awPoint $center Point center  
     * @param int $width Ellipse width  
     * @param int $height Ellipse height  
     * @param int $from Start angle  
     * @param int $to End angle  
    abstract public function filledArc(awColor $color, awPoint $center, $width, $height, $from, $to);  
     * @param awColor $color Ellipse color  
     * @param awPoint $center Ellipse center  
     * @param int $width Ellipse width  
     * @param int $height Ellipse height  
    abstract public function ellipse(awColor $color, awPoint $center, $width, $height);  
     * Draw an ellipse with a background  
     * @param mixed $background Background (can be a color or a gradient)  
     * @param awPoint $center Ellipse center  
     * @param int $width Ellipse width  
     * @param int $height Ellipse height  
    abstract public function filledEllipse($background, awPoint $center, $width, $height);  
     * Draw a colored rectangle  
     * @param awColor $color Rectangle color  
     * @param awLine $line Rectangle diagonale  
    abstract public function rectangle(awColor $color, awLine $line);  
     * Draw a rectangle with a background  
     * @param mixed $background Background (can be a color or a gradient)  
     * @param awLine $line Rectangle diagonale  
     * @param awColor $color Polygon color  
     * @param Polygon A polygon  
    abstract public function polygon(awColor $color, awPolygon $polygon);  
     * Draw a polygon with a background  
     * @param mixed $background Background (can be a color or a gradient)  
     * @param Polygon A polygon  
    abstract public function filledPolygon($background, awPolygon $polygon);  
     * Sends the image, as well as the correct HTTP headers, to the browser  
     * @param awImage $image The Image object to send  
    abstract public function send(awImage $image);  
     * Get the image as binary data  
    abstract public function get(awImage $image);  
     * Return the width of some text  
     * Return the height of some text  
     * Return the string representing the type of driver  
     * Returns whether or not the driver is compatible with the given font type  
//    abstract private function drawImage(awImage $image, $return = FALSE, $header = TRUE);  
 * Abstract class for font drivers.  
 * Those are used to do all the grunt work on fonts.  
 * @package linea21.externals  
     * @param awDriver $driver The Driver object to draw upon  
     * @param awText $text The Text object  
     * @param awPoint $point Where to draw the text  
     * @param float $width The width of the area containing the text  
    abstract public function string(awDriver $driver, awText $text, awPoint $point, $width =  NULL);  
     * Calculate the width of a given Text.  
     * @param awText $text The Text object  
     * @param awDriver $driver The awDriver object used to draw the graph  
    abstract public function getTextWidth(awText $text, awDriver $driver);  
     * Calculate the height of a given Text.  
     * @param awText $text The Text object  
     * @param awDriver $driver The awDriver object used to draw the graph  
    abstract public function getTextHeight(awText $text, awDriver $driver);  
 * Class to handle calculations on PHPFont objects  
 * @package linea21.externals  
    public function string(awDriver $driver, awText $text, awPoint $point, $width =  NULL) {  
        switch ($driver->getDriverString()) {  
                $this->gdString($driver, $text, $point, $width);  
                awImage::drawError('Class PHPFontDriver: Incompatibility between driver and font - You should never see this error message: have you called awDriver::isCompatibleWithFont() properly?');  
     * Draw a string onto a GDDriver object  
     * @param awGDDriver $driver The GDDriver to draw the text upon  
     * @param awText $text The awText object containing the string to draw  
     * @param awPoint $point Where to draw the text  
     * @param float $width The width of the text  
    private function gdString(awGDDriver $driver, awText $text, awPoint $point, $width =  NULL) {  
        $angle =  $text->getAngle();  
        if($angle !==  90 and $angle !==  0) {  
            awImage::drawError("Class PHPFontDriver: You can only use 0° and 90° angles.");  
            $function =  'imagestringup';  
            $addAngle =  $this->getGDTextHeight($text);  
            $function =  'imagestring';  
        $color =  $text->getColor();  
        $rgb =  $driver->getColor($color);  
        $textString =  $text->getText();  
        $textHeight =  $this->getGDTextHeight($text);  
            $characters =  floor($width /  ($this->getGDTextWidth($text) /  strlen($textString)));  
                $textString =  wordwrap($textString, $characters, "\n", TRUE);  
        $font =  $text->getFont();  
        $lines =  explode("\n", $textString);  
        foreach($lines as $i =>  $line) {  
            // Line position handling  
                $addX =  $i *  $textHeight;  
                $addY =  $i *  $textHeight;  
                $driver->x +  $point->x +  $addX,  
                $driver->y +  $point->y +  $addY +  $addAngle,  
    public function getTextWidth(awText $text, awDriver $driver) {  
        switch ($driver->getDriverString()) {  
                return $this->getGDTextWidth($text);  
                awImage::drawError('Class PHPFontDriver: Cannot get text width - incompatibility between driver and font');  
        switch ($driver->getDriverString()) {  
                return $this->getGDTextHeight($text);  
                awImage::drawError('Class PHPFontDriver: Cannot get text height - incompatibility between driver and font');  
     * Return the width of a text for a GDDriver  
    private function getGDTextWidth(awText $text) {  
        $font =  $text->getFont();  
        if($text->getAngle() ===  90) {  
            return $this->getGDTextHeight($text);  
        } else if($text->getAngle() ===  45) {  
        if($fontWidth ===  FALSE) {  
        return (int) $fontWidth *  strlen($text->getText());  
     * Return the height of a text for a GDDriver  
     * @return int $fontHeight  
    private function getGDTextHeight(awText $text) {  
        $font =  $text->getFont();  
        if($text->getAngle() ===  90) {  
            return $this->getGDTextWidth($text);  
        } else if($text->getAngle() ===  45) {  
        if($fontHeight ===  FALSE) {  
 * Class to handle calculations on FileFont objects  
 * @package linea21.externals  
    public function string(awDriver $driver, awText $text, awPoint $point, $width =  NULL) {  
        switch ($driver->getDriverString()) {  
                $this->gdString($driver, $text, $point, $width);  
                awImage::drawError('Class fileFontDriver: Incompatibility between driver and font - You should never see this error message: have you called awDriver::isCompatibleWithFont() properly?');  
     * Draw an awFileFont object on a GD ressource  
     * @param awGDDriver $driver The awGDDriver object containing the ressource to draw upon  
     * @param awText $text The awText object containing the string to draw  
     * @param awPoint $point Where to draw the string from  
     * @param float $width The width of the area containing the text  
    private function gdString(awGDDriver $driver, awText $text, awPoint $point, $width =  NULL) {  
        // Make easier font positionment  
        $text->setText($text->getText(). " ");  
        $font =  $text->getFont();  
        if($font instanceof  awTTFFont ===  FALSE and $font->getExtension() ===  NULL) {  
            $font->setExtension('ttf');  
        $filePath =  $font->getName(). '.'. $font->getExtension();  
        $box =  imagettfbbox($font->getSize(), $text->getAngle(), $filePath, $text->getText());  
        $box =  imagettfbbox($font->getSize(), 90, $filePath, $text->getText());  
        $textWidth =  abs($box[6] -  $box[2]);  
        $text->setText(substr($text->getText(), 0, strlen($text->getText()) -  1));  
        $textString =  $text->getText();  
            $characters =  floor($width /  $this->getGDAverageWidth($font));  
            $textString =  wordwrap($textString, $characters, "\n", TRUE);  
        $color =  $text->getColor();  
        $rgb =  $driver->getColor($color);  
            $driver->x +  $point->x +  $textWidth *  sin($text->getAngle() /  180 *  M_PI),  
            $driver->y +  $point->y +  $textHeight,  
    public function getTextWidth(awText $text, awDriver $driver) {  
        switch ($driver->getDriverString()) {  
                return $this->getGDTextWidth($text);  
                awImage::drawError('Class FileFontDriver: Cannot get text width - incompatibility between driver and font');  
        switch ($driver->getDriverString()) {  
                return $this->getGDTextHeight($text);  
                awImage::drawError('Class FileFontDriver: Cannot get text height - incompatibility between driver and font');  
    private function getGDTextWidth(awText $text) {  
        $font =  $text->getFont();  
        if($font->getExtension() ===  NULL) {  
            $font->setExtension('ttf');  
        $filePath =  $font->getName(). '.'. $font->getExtension();  
        $box =  imagettfbbox($font->getSize(), $text->getAngle(), $filePath, $text->getText());  
        list (, , $x2, , , , $x1, ) =  $box; 
    private function getGDTextHeight(awText $text) {  
        $font =  $text->getFont();  
        if($font->getExtension() ===  NULL) {  
            $font->setExtension('ttf');  
        $filePath =  $font->getName(). '.'. $font->getExtension();  
        $box =  imagettfbbox($font->getSize(), $text->getAngle(), $filePath, $text->getText());  
        list (, , , $y2, , , , $y1) =  $box; 
    private function getGDAverageWidth(awFileFont $font) {  
        $text =  "azertyuiopqsdfghjklmmmmmmmwxcvbbbn,;:!?.";  
        $box =  imagettfbbox($font->getSize(), 0, $font->getName(). '.'. $font->getExtension(), $text);  
        list (, , $x2, $y2, , , $x1, $y1) =  $box; 
// Include ARTICHOW_DRIVER by default to preserve backward compatibility.  
require_once dirname(__FILE__ ). '/drivers/'. ARTICHOW_DRIVER. '.class.php';  
 
 
        
       |