imagesetbrush
(PHP 4 >= 4.0.6, PHP 5, PHP 7)
imagesetbrush — Set the brush image for line drawing
Description
$image
, resource $brush
) : bool
imagesetbrush() sets the brush image to be
used by all line drawing functions (such as imageline()
and imagepolygon()) when drawing with the special
colors IMG_COLOR_BRUSHED
or
IMG_COLOR_STYLEDBRUSHED
.
You need not take special action when you are finished with a brush, but
if you destroy the brush image (or let PHP destroy it), you must not use the
IMG_COLOR_BRUSHED
or
IMG_COLOR_STYLEDBRUSHED
colors until you have set a
new brush image!
Parameters
-
image
-
An image resource, returned by one of the image creation functions, such as imagecreatetruecolor().
-
brush
-
An image resource.
Examples
Example #1 imagesetbrush() example
<?php
// Load a mini php logo
$php = imagecreatefrompng('./php.png');
// Create the main image, 100x100
$im = imagecreatetruecolor(100, 100);
// Fill the background with white
$white = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 299, 99, $white);
// Set the brush
imagesetbrush($im, $php);
// Draw a couple of brushes, each overlaying each
imageline($im, 50, 50, 50, 60, IMG_COLOR_BRUSHED);
// Output image to the browser
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
imagedestroy($php);
?>
The above example will output something similar to:
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-function.imagesetbrush.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.