
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
Urmila Samariya has Published 135 Articles

Urmila Samariya
346 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 ... Read More

Urmila Samariya
404 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 ... Read More

Urmila Samariya
912 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 − ... Read More

Urmila Samariya
384 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 ... Read More

Urmila Samariya
193 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 ... Read More

Urmila Samariya
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 ... Read More

Urmila Samariya
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 ... Read More

Urmila Samariya
136 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 ... Read More

Urmila Samariya
389 Views
imageopenpolygon() is an inbuilt function in PHP that is used to draw an open polygon on a given image.Syntaxbool imageopenpolygon(resource $image, array $points, int $num_points, int $color)Parametersimageopenpolygon() takes four different parameters: $image, $points, $num_points and$color. $image − Specifies the image resource to work on.$image − Specifies the image resource to ... Read More

Urmila Samariya
2K+ Views
imageline() is an inbuilt function in PHP that is used to draw a line between two given points.Syntaxbool imageline(resource $image, int $x1, int $y1, int $x2, int $y2, int $color)Parametersimageline() takes six different parameters: $image, $x1, $y1, $x2, $y2 and $color.$image − Specifies the image resource to work on.$x1 − ... Read More