La función imagedashedline() es una función incorporada en PHP que se utiliza para dibujar una línea discontinua. Esta función devuelve VERDADERO en caso de éxito y devuelve FALSO en caso contrario.
Sintaxis:
bool imagedashedline( $image , $x1 , $y1 , $x2 , $y2 , $color )
Parámetros: esta función acepta seis parámetros, como se mencionó anteriormente y se describe a continuación:
- $imagen: la función imagecreatetruecolor() se usa para crear una imagen en blanco en un tamaño determinado.
- $x1: este parámetro se usa para mantener la coordenada x superior izquierda.
- $y1: este parámetro se usa para mantener la coordenada y superior izquierda. (0, 0) es la esquina superior izquierda de la imagen.
- $x2: este parámetro se usa para mantener la coordenada x inferior derecha.
- $y2: este parámetro se usa para mantener la coordenada y inferior derecha.
- $color: esta variable contiene el identificador de color relleno. Un identificador de color creado con la función imagecolorallocate() .
Valor de retorno: esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.
Los siguientes programas ilustran la función imagedashedline() en PHP.
Programa 1:
<?php // Create the size of image or blank image $image = imagecreatetruecolor(400, 300); // Set the background color of image $background_color = imagecolorallocate($image, 0, 153, 0); // Fill background with above selected color imagefill($image, 0, 0, $background_color); // Set the color of dotted line in image $color = imagecolorallocate($image, 255, 255, 255); // Draw a dashed line imagedashedline($image, 0, 0, 100, 150, $color); // Output the image header("Content-type: image/png"); imagepng($image); ?>
Producción:
Programa 2:
<?php // Create the size of image or blank image $image = imagecreatetruecolor(400, 300); // Set the background color of image $background_color = imagecolorallocate($image, 0, 153, 0); // Fill background with above selected color imagefill($image, 0, 0, $background_color); // Set the color of dotted line in image $white = imagecolorallocate($image, 255, 255, 255); // $value is an array variable stored color // code of dotted image $values = Array( $white, $white, $white, $white, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT ); imagesetstyle($image, $values); // Draw the dashed line imageline($image, 50, 150, 300, 150, IMG_COLOR_STYLED); // Save the image header("Content-type: image/png"); imagepng($image); ?>
Producción:
Artículos relacionados:
- PHP | Función imagenllenadapolígono()
- PHP | función imageellipse()
- PHP | Función imagenllenadaellipse()
Referencia: http://php.net/manual/en/function.imagedashedline.php
Publicación traducida automáticamente
Artículo escrito por Vishal_Khoda y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA