php Programming Glossary: imagefilledrectangle
how to make thumbnails with php http://stackoverflow.com/questions/1525528/how-to-make-thumbnails-with-php nwidth nheight bgc imagecolorallocate newimg 238 238 238 imagefilledrectangle newimg 0 0 nwidth nheight bgc if @imagecopyresampled newimg..
PHP: imagepng() and transparency http://stackoverflow.com/questions/1705098/php-imagepng-and-transparency imagecolortransparent im black Draw a red rectangle imagefilledrectangle im 4 4 50 25 red Save the image imagepng im '. imagecolortransparent.png'..
PHP Accurate Font Width http://stackoverflow.com/questions/1767588/php-accurate-font-width fonts Arial.ttf' Then I add some background for the text imagefilledrectangle image 0 0 12 green And add text imagettftext image 12 0 0 12..
PHP function imagettftext() and unicode http://stackoverflow.com/questions/198007/php-function-imagettftext-and-unicode 255 black imagecolorallocate im 0 0 0 Create some colors imagefilledrectangle im 0 0 159 159 white Add the text imagettftext im 12 0 20 20..
PHP GD Text with Transparency/Alpha background http://stackoverflow.com/questions/2134467/php-gd-text-with-transparency-alpha-background img 255 255 255 grey imagecolorallocate img 127 127 127 imagefilledrectangle img 0 0 imageX imageY grey imagefilledrectangle img 2 2 imageX.. 127 127 imagefilledrectangle img 0 0 imageX imageY grey imagefilledrectangle img 2 2 imageX 4 imageY 4 transparent font . arialbd.ttf fontSize.. 1 text_posX imageX 2 textX 2 text_posY imageY 2 textY 2 imagefilledrectangle img 10 10 imageX 10 imageY 10 grey imagettftext img fontSize..
GD! Converting a png image to jpeg and making the alpha by default white and not black http://stackoverflow.com/questions/2569970/gd-converting-a-png-image-to-jpeg-and-making-the-alpha-by-default-white-and-not width height white imagecolorallocate output 255 255 255 imagefilledrectangle output 0 0 width height white imagecopy output input 0 0 0 0..
imagecreatefrompng error http://stackoverflow.com/questions/2779725/imagecreatefrompng-error im 255 255 255 tc imagecolorallocate im 0 0 0 imagefilledrectangle im 0 0 150 30 bgc Output an error message imagestring im 1 5..
How do I resize pngs with transparency in PHP? http://stackoverflow.com/questions/279236/how-do-i-resize-pngs-with-transparency-in-php transparent imagecolorallocatealpha newImg 255 255 255 127 imagefilledrectangle newImg 0 0 nWidth nHeight transparent imagecopyresampled newImg..
how i can add watermark to existing pdf file using php http://stackoverflow.com/questions/2913934/how-i-can-add-watermark-to-existing-pdf-file-using-php Background color bg imagecolorallocate img 255 255 255 imagefilledrectangle img 0 0 width height bg Font color color imagecolorallocate.. width height tbg imagecolorallocate blank 255 255 255 imagefilledrectangle blank 0 0 width height tbg imagecolortransparent blank tbg if..
convert text to image in php [duplicate] http://stackoverflow.com/questions/4488549/convert-text-to-image-in-php im 128 128 128 black imagecolorallocate im 0 0 0 imagefilledrectangle im 0 0 399 29 white The text to draw text 'Testing...' Replace..
Rounded transparent _smooth_ corners using imagecopyresampled() PHP GD http://stackoverflow.com/questions/5766865/rounded-transparent-smooth-corners-using-imagecopyresampled-php-gd b 127 imagealphablending img false imagesavealpha img true imagefilledrectangle img 0 0 nw nh alphacolor imagefill img 0 0 alphacolor imagecopyresampled.. w h imagealphablending dest false imagesavealpha dest true imagefilledrectangle dest 0 0 w h alphacolor imagecopyresampled dest img 0 0 0 0..
php GD create a transparent png image http://stackoverflow.com/questions/6109832/php-gd-create-a-transparent-png-image image 255 255 255 127 imagefill image 0 0 col imagefilledrectangle image 0 0 485 500 col add door glass img_doorGlass imagecreatefrompng.. false col imagecolorallocatealpha image 255 255 255 127 imagefilledrectangle image 0 0 485 500 col imagealphablending image true add door..
PNG Transparency Resize with SimpleImage.php Class http://stackoverflow.com/questions/6382448/png-transparency-resize-with-simpleimage-php-class imagecolorallocatealpha new_image 255 255 255 127 imagefilledrectangle new_image 0 0 width height transparent Resize image imagecopyresampled.. imagecolorallocatealpha new_image 255 255 255 127 imagefilledrectangle new_image 0 0 width height transparent imagecopyresampled new_image..
Outputting image with underlined text using php GD library http://stackoverflow.com/questions/692411/outputting-image-with-underlined-text-using-php-gd-library im 255 255 255 black imagecolorallocate im 0 0 0 imagefilledrectangle im 0 0 399 29 white The text to draw text #x0332 U #x0332 d..
How can I write Arabic or Persian characters into an image? http://stackoverflow.com/questions/7426685/how-can-i-write-arabic-or-persian-characters-into-an-image im 0 0 0 white imagecolorallocate im 255 255 255 imagefilledrectangle im 0 0 500 100 white imagettftext im 12 0 10 20 black font text..
Resize Image PNG With transparence http://stackoverflow.com/questions/7569100/resize-image-png-with-transparence imagecolorallocatealpha new_image 255 255 255 127 imagefilledrectangle new_image 0 0 width height transparent imagecopyresampled new_image..
|