|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-04-30 14:45 UTC] iliaa@php.net
[2006-08-21 11:41 UTC] wkpark at gmail dot com
[2006-08-21 11:52 UTC] pajoye@php.net
[2006-08-29 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 23:00:01 2025 UTC |
Description: ------------ * imagearc() algorithm change : triangle loop -> one polygon * truecolor(), truecoloralpha() add to php function * imagefttext() add 'charspacing' imagefttext($im, size, angle, x, y, col, font, text, array('linespacing'=>1.5, 'charspacing'=>.9)); ----gdfx---- * imagesharpen(); like photoshop filter 'sharpen' imagesharpen($im, decimal) * imagesquaretocircle(); original image must square. $im = imagecreatefrompng('origin.png'); // ex:400x400 $oim = imagesquaretocircle($im, 200); // (radius) output : 400x400 circleimage * imagefttextcircle() text draw imagefttextcircle($im, centerX, centerY, radius, textradius, fillPortion, fontFilePath, fontsize, 'toptext', 'bottomtext', color); Reproduce code: --------------- http://my.netian.com/~crosser/files/php-4.3.6_bundledgd+charspace_polyarc_+gdfx.patch.bz2 this is patch file. ;)