Programming Articles - Page 1129 of 3363

How to enable or disable interlace using imageinterlace() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:44:39

522 Views

imageinterlace() is an inbuilt PHP function that is used to enable or disable interlace in an image. It is a method of encoding a bitmap image such that a person who has partially received it sees a degraded copy of the entire image.Interlacing an image lets users see portions of it as it loads, and it takes different forms depending on the image type. The non-interlaced JPEGs appear line-by-line. To enable interlacing on picture, we can simply call this function with the second parameter set to 1, or set to 0 (zero) to disable it.Syntaxint imageinterlace(resource $image, int $interlace)Parametersimageinterlace() takes ... Read More

How to set a single pixel using imagesetpixel() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:39:33

503 Views

imagesetpixel() is an inbuilt function in PHP that is used to set a single pixel at the listed coordinate.Syntaxbool imagesetpixel(resource $image, int $x, int $y, int $color)Parametersimagesetpixel() accepts four parameters: $image, $x, $y and $color.$image − Specifies the image resource to work on.$x − Specifies the x-coordinate of the pixel.$y − Specifies the y-coordinate of the pixel.$color − Specifies the color of the pixel.Return Values −imagesetpixel() returns True on success and False on failure.Example 1OutputExample 2Output

How to set the image thickness for line drawing using imgesetthickness() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:21:29

389 Views

imagesetthickness() is an inbuilt function in PHP that is used to set the thickness for line drawing.Syntaxbool imagesetthickness($image, $thickness)Parametersimagesetthickness() accepts two parameters− $image and $thickness.$image − This parameter is returned by an image creation function such as imagecreatetruecolor(). It is used to create the size of an image.$thickness − This parameter sets the thickness in pixel.Return Valuesimagesetthickness() returns True on success and False on failure.Example 1OutputExample 2Output

How to draw a string vertically using imagestringup() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:16:36

426 Views

imagestringup() is an inbuilt function in PHP that is used to draw an image vertically.Syntaxbool imagestringup ($image, $font, $x, $y, $string, $color)Parametersimagestring() accepts six parameters: $image, $font, $x, $y, $string, and $color.$image − The $image parameter uses imagecreatetruecolor() function to create a blank image of given size.$font − The $font parameter is used to set the font-size values from 1, 2, 3, 4, and 5 for inbuilt fonts or other font identifiers registered with imageloadfont() function.$x − Holds the position of the font in the horizontal X-axis, upper leftmost corner.$y − Holds the position of the font in the vertical ... Read More

How to draw a text string image horizontally by using imagestring() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:13:31

991 Views

imagestring() is an inbuilt function in PHP that is used to draw a string horizontally.Syntaxbool imagestring($image, $font, $x, $y, $string, $color)Parametersimagestring() accepts six different parameters − $image, $font, $x, $y, $string, and $color.$image − The $image parameter uses imagecreatetruecolor() function to create a blank image in the given size.$font − The $font parameter is used to set the font size values from 1, 2, 3, 4, and 5 for inbuilt fonts.$x − Holds the position of the font in the horizontal X-axis, upper leftmost corner.$y − Holds the position of the font in the vertical Y-axis, topmost corner.$string − The ... Read More

How to set the tile image for filling using imagesettile() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:10:16

415 Views

imagesettle() is an inbuilt function in PHP that is used to set the tile image for filling. It sets the image to be used by all-region filling functions like imagefill() and imagefilledpolygon() when filling with a special color IMG_COLOR_TILED.We can say that a tile is an image that is used to fill an area with a repeated pattern. We can use any GD image as a tile.Syntaxbool imagesettile($image, $tile)Parametersimagesettile() takes two parameters: $image and $tile.$image − Holds a GD image.$tile − The $tile parameter is used to set the image resource as a tile.Return Valuesimagesettile() returns True on success and ... Read More

How to set the style for line drawing using imagesetstyle() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:06:26

215 Views

imagesetstyle() is an inbuilt function in PHP that is used to set the style for line drawing. It can be used by all line drawing functions like imagepolygon or imageline.Syntaxbool imagesetstyle(resource $image, array $style)Parametersimagesetstyle() takes two parameters: $image and $style.$image − Specifies the image resource to work on.$style − Specifies the array of pixel colors.Return Valuesimagesetstyle() returns True on success or False on failure.Example 1Input ImageOutput ImageExample 2Output

How to rotate an image with a given angle using imagerotate() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 13:02:24

1K+ Views

imagerotate() is an inbuilt function in PHP that is used to rotate an image with a given angle in degrees.Syntaxresource imagerotate($image, $angle, $bgd_color, $ignore_transparent = 0)Parametersimagerotate() accepts four parameters, $image, $angle, $bgd_color, and $ignore_transparent.$image − The $image parameter returned by the imagecreatetruecolor() function. It is used to create the size of an image.$angle − The $angle parameter is used to hold the different rotation angles in degrees. It is used to rotate an image in the anticlockwise direction.$bgd_color − Holds the background color of the uncovered zone after the rotation.$ignore_transparent − The $ignore_transparent parameter is used to set and if ... Read More

How to get or set the resolution of an image using imageresolution() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 12:54:22

1K+ Views

imageresoulution() is an inbuilt function in PHP that is used to get or set the resolution of an image in dots per inch. If no optional parameters are given, then the current resolution is returned as an indexed array. If one of the optional parameters is given, then it will set both the width and height to that parameter.The resolution is only used as meta information when the images are read from and written to formats supporting this kind of information (currently PNG and JPEG). It does not affect any drawing operations. The 96 DPI (dots per inch) is the ... Read More

How to copy the palette from one image to another using imagepalettecopy() function in PHP?

Urmila Samariya
Updated on 09-Aug-2021 12:50:53

164 Views

imagepalettecopy() is an inbuilt PHP function that is used to copy the palette from one image to another. This function copies the palette from the source image to the destination image.Syntaxvoid imagepalettecopy(resource $destination, resource $source)Parametersimagepalettecopy() accepts two parameters − $source and $destination.$destination − Specifies the destination image resource.$source − Specifies the source image resource.Return Valuesimagepalettecopy() retuns no values.Example 1OutputExample 2 Live DemoOutputColors in image 1 are 1 Colors in image 2 are 1

Advertisements