Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
imagedashedline() function in PHP
The imagedashedline() function draws a dashed line.
Syntax
imagedashedline( $image , $x1 , $y1 , $x2 , $y2 , $color )
Parameters
image
Create a blank image with imagecreatetruecolor().x1
Upper left x-coordinatey1
Upper left y-coordinatex2
Bottom right x-coordinatey2
Bottom right y-coordinatecolor
The fill color.
Return
The function returns TRUE on success or FALSE on failure.
Example
The following is an example:
<?php
$image = imagecreatetruecolor(500, 370);
$bgcolor = imagecolorallocate($image, 70, 90, 120);
imagefill($image, 0, 0, $bgcolor);
$color = imagecolorallocate($image, 90, 220, 175);
imagedashedline($image, 0, 0, 150, 50, $color);
header("Content-type: image/png");
imagepng($image);
?>
Output
The following is the output:

Advertisements