Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

imagedashedline(3) [php man page]

IMAGEDASHEDLINE(3)							 1							IMAGEDASHEDLINE(3)

imagedashedline - Draw a dashed line

SYNOPSIS
bool imagedashedline (resource $image, int $x1, int $y1, int $x2, int $y2, int $color) DESCRIPTION
This function is deprecated. Use combination of imagesetstyle(3) and imageline(3) instead. PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $x1 - Upper left x coordinate. o $y1 - Upper left y coordinate 0, 0 is the top left corner of the image. o $x2 - Bottom right x coordinate. o $y2 - Bottom right y coordinate. o $color - The fill color. A color identifier created with imagecolorallocate(3). RETURN VALUES
Always returns true EXAMPLES
Example #1 imagedashedline(3) example <?php // Create a 100x100 image $im = imagecreatetruecolor(100, 100); $white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); // Draw a vertical dashed line imagedashedline($im, 50, 25, 50, 75, $white); // Save the image imagepng($im, './dashedline.png'); imagedestroy($im); ?> The above example will output something similar to:[NOT DISPLAYABLE MEDIA]Output of example : imagedashedline() Example #2 Alternative to imagedashedline(3) <?php // Create a 100x100 image $im = imagecreatetruecolor(100, 100); $white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); // Define our style: First 4 pixels is white and the // next 4 is transparent. This creates the dashed line effect $style = Array( $white, $white, $white, $white, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT ); imagesetstyle($im, $style); // Draw the dashed line imageline($im, 50, 25, 50, 75, IMG_COLOR_STYLED); // Save the image imagepng($im, './imageline.png'); imagedestroy($im); ?> SEE ALSO
imagesetstyle(3), imageline(3). PHP Documentation Group IMAGEDASHEDLINE(3)

Check Out this Related Man Page

IMAGESETSTYLE(3)							 1							  IMAGESETSTYLE(3)

imagesetstyle - Set the style for line drawing

SYNOPSIS
bool imagesetstyle (resource $image, array $style) DESCRIPTION
imagesetstyle(3) sets the style to be used by all line drawing functions (such as imageline(3) and imagepolygon(3)) when drawing with the special color IMG_COLOR_STYLED or lines of images with color IMG_COLOR_STYLEDBRUSHED. PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $style - An array of pixel colors. You can use the IMG_COLOR_TRANSPARENT constant to add a transparent pixel. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Following example script draws a dashed line from upper left to lower right corner of the canvas: Example #1 imagesetstyle(3) example <?php header("Content-type: image/jpeg"); $im = imagecreatetruecolor(100, 100); $w = imagecolorallocate($im, 255, 255, 255); $red = imagecolorallocate($im, 255, 0, 0); /* Draw a dashed line, 5 red pixels, 5 white pixels */ $style = array($red, $red, $red, $red, $red, $w, $w, $w, $w, $w); imagesetstyle($im, $style); imageline($im, 0, 0, 100, 100, IMG_COLOR_STYLED); /* Draw a line of happy faces using imagesetbrush() with imagesetstyle */ $style = array($w, $w, $w, $w, $w, $w, $w, $w, $w, $w, $w, $w, $red); imagesetstyle($im, $style); $brush = imagecreatefrompng("http://www.libpng.org/pub/png/images/smile.happy.png"); $w2 = imagecolorallocate($brush, 255, 255, 255); imagecolortransparent($brush, $w2); imagesetbrush($im, $brush); imageline($im, 100, 0, 0, 100, IMG_COLOR_STYLEDBRUSHED); imagejpeg($im); imagedestroy($im); ?> The above example will output something similar to:[NOT DISPLAYABLE MEDIA]Output of example : imagesetstyle() SEE ALSO
imagesetbrush(3), imageline(3). PHP Documentation Group IMAGESETSTYLE(3)
Man Page