Home
last modified time | relevance | path

Searched refs:alpha (Results 1 – 25 of 94) sorted by path

1234

/PHP-5.5/
H A DINSTALL1390 with the alpha or beta state. If no stable packages are available, you
H A DNEWS309 . Fixed bug #61221 (imagegammacorrect function loses alpha channel). (cmb)
6064 - Added support for gray levels PNG image with alpha in GD extension. (Pierre)
7046 - Added alpha support for imagefilter() IMG_FILTER_COLORIZE. (Pierre)
8010 - Fixed bug #39366 (imagerotate does not use alpha with angle > 45 degrees)
8029 - Fixed bug #39273 (imagecopyresized may ignore alpha channel) (Pierre)
8427 - Fixed bug #38179 (imagecopy from a palette to a truecolor image loose alpha
9791 . Bug #32063 (mb_convert_encoding ignores named entity 'alpha')
H A DREADME.RELEASE_PROCESS56 Rolling a non stable release (alpha/beta/RC)
69 Do not use abbreviations for alpha and beta. Do not use dashes, you should
107 Getting the non stable release (alpha/beta/RC) announced
H A Dconfig.guess223 alpha:OSF1:*:*)
283 echo alpha-pc-interix
286 echo alpha-dec-winnt3.5
878 alpha:Linux:*:*)
1328 A*) echo alpha-dec-vms ; exit ;;
H A Dconfig.sub259 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
H A Dconfigure.in274 alpha*)
/PHP-5.5/build/
H A Dshtool1409 alpha ) AP="Alpha" ;;
/PHP-5.5/ext/ctype/tests/
H A Dctype_alnum_variation2.phpt32 character code 48 is alpha numeric
33 character code 49 is alpha numeric
34 character code 50 is alpha numeric
35 character code 51 is alpha numeric
36 character code 52 is alpha numeric
37 character code 53 is alpha numeric
38 character code 54 is alpha numeric
39 character code 55 is alpha numeric
40 character code 56 is alpha numeric
41 character code 57 is alpha numeric
[all …]
/PHP-5.5/ext/ereg/regex/
H A DWHATSNEW80 New in alpha+3: full prototyping for internal routines, using a little
86 New in alpha+2: minor bits of cleanup. Notably, the number "32" for the
91 New in alpha+1: improvements to the manual pages, and an important
H A Dtests275 a[[:alpha:]]c & abc abc
278 a[[:alpha &C EBRACK
279 a[[:alpha:] &C EBRACK
280 a[[:alpha,:] &C ECTYPE
286 [[:alpha:]]+ - -%@aX0- aX
/PHP-5.5/ext/ereg/tests/
H A Dereg_basic_004.phpt18 var_dump(ereg('[:alpha:]', 'x', $regs));
H A Dereg_replace_basic_002.phpt18 var_dump(ereg_replace('[:alpha:]', $replacement, 'x'));
H A Deregi_basic_004.phpt17 var_dump(eregi('[:alpha:]', 'x', $regs));
H A Deregi_replace_basic_002.phpt17 var_dump(eregi_replace('[:alpha:]', $replacement, 'x'));
H A Dsplit_basic_003.phpt18 var_dump(split('[:alpha:]', '--- x ---'));
H A Dspliti_basic_003.phpt17 var_dump(spliti('[:alpha:]', '--- x ---'));
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic3248 >16 lelong 3 alpha
5141 >24 leshort 0410 COFF format alpha pure
5142 >24 leshort 0413 COFF format alpha demand paged
5150 >24 leshort 0407 COFF format alpha object
9938 >25 byte 4 gray+alpha,
9948 0 string GIF94z ZIF image (GIF+deflate alpha)
10099 >10 byte&0x4 =0x4 \b, alpha channel
10299 >>12 beshort 2 with alpha
11716 >>0 belong&0x00ffffff 16 alpha
14127 0 lelong 0x00070185 ECOFF NetBSD/alpha binary
[all …]
/PHP-5.5/ext/gd/
H A Dgd.c220 ZEND_ARG_INFO(0, alpha)
228 ZEND_ARG_INFO(0, alpha)
236 ZEND_ARG_INFO(0, alpha)
244 ZEND_ARG_INFO(0, alpha)
463 ZEND_ARG_INFO(0, alpha)
1823 long red, green, blue, alpha; in PHP_FUNCTION() local
1845 long red, green, blue, alpha; in PHP_FUNCTION() local
1863 long red, green, blue, alpha; in PHP_FUNCTION() local
1881 long red, green, blue, alpha; in PHP_FUNCTION() local
2972 long color, red, green, blue, alpha = 0; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd.c290 ad = im->alpha[i] - a; in gdImageColorClosestAlpha()
511 im->alpha[ct] = a; in gdImageColorAllocateAlpha()
561 ad = (long) (im->alpha[c] - a); in gdImageColorResolveAlpha()
586 im->alpha[op] = a; in gdImageColorResolveAlpha()
613 im->alpha[color] = gdAlphaTransparent; in gdImageColorTransparent()
646 to->alpha[i] = from->alpha[i]; in gdImagePaletteCopy()
2539 alpha /= spixels; in gdImageCopyResampled()
2540 alpha += 0.5; in gdImageCopyResampled()
2560 if (alpha > gdAlphaMax) { in gdImageCopyResampled()
2561 alpha = gdAlphaMax; in gdImageCopyResampled()
[all …]
H A Dgd.h213 int alpha[gdMaxColors]; member
737 (im)->alpha[(c)])
785 int gdImageColor(gdImagePtr src, const int red, const int green, const int blue, const int alpha);
H A Dgd_color.c58 im2->alpha[color] = *(bp++) / count; in gdImageColorMatch()
H A Dgd_filter.c187 int gdImageColor(gdImagePtr src, const int red, const int green, const int blue, const int alpha) in gdImageColor() argument
213 a = a + alpha; in gdImageColor()
H A Dgd_gd.c79 if (!gdGetByte(&im->alpha[i], in)) { in _gdGetColors()
226 gdPutC((unsigned char) im->alpha[i], out); in _gdPutColors()
H A Dgd_interpolation.c617 register int alpha, red, green, blue; in _color_blend() local
622 alpha = src_alpha * dst_alpha / gdAlphaMax; in _color_blend()
631 return ((alpha << 24) + (red << 16) + (green << 8) + blue); in _color_blend()
777 a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]); in getPixelInterpolateWeight()
1473 unsigned char red, green, blue, alpha = 0; in gdImageScaleBicubicFixed() local
1651 alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gamma)), 0, 127); in gdImageScaleBicubicFixed()
1653 *(dst_row + dst_offset_x) = gdTrueColorAlpha(red, green, blue, alpha); in gdImageScaleBicubicFixed()
1904 const unsigned char alpha = (unsigned char) CLAMP(gd_fxtoi(f_alpha), 0, 127); in gdImageRotateBilinear() local
1964 unsigned char red, green, blue, alpha; in gdImageRotateBicubicFixed() local
2172 alpha = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_alpha, f_gama)), 0, 127); in gdImageRotateBicubicFixed()
[all …]
H A Dgd_png.c245 im->alpha[i] = gdAlphaMax - (trans[i] >> 1); in gdImageCreateFromPngCtx()
605 if ((!im->open[i]) && (im->alpha[i] != gdAlphaOpaque)) { in gdImagePngCtxEx()
612 trans_values[i] = 255 - ((im->alpha[i] << 1) + (im->alpha[i] >> 6)); in gdImagePngCtxEx()
628 if (im->alpha[i] != gdAlphaOpaque) { in gdImagePngCtxEx()
630 trans_values[j] = 255 - ((im->alpha[i] << 1) + (im->alpha[i] >> 6)); in gdImagePngCtxEx()

Completed in 174 milliseconds

1234