php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
gd.stub.php
Go to the documentation of this file.
1<?php
2
4
9const IMG_AVIF = UNKNOWN;
14const IMG_GIF = UNKNOWN;
19const IMG_JPG = UNKNOWN;
24const IMG_JPEG = UNKNOWN;
29const IMG_PNG = UNKNOWN;
34const IMG_WBMP = UNKNOWN;
39const IMG_XPM = UNKNOWN;
44const IMG_WEBP = UNKNOWN;
49const IMG_BMP = UNKNOWN;
54const IMG_TGA = UNKNOWN;
55
56/* constant for webp encoding */
57
58#ifdef gdWebpLossless
63const IMG_WEBP_LOSSLESS = UNKNOWN;
64#endif
65
66/* special colours for gd */
67
72const IMG_COLOR_TILED = UNKNOWN;
77const IMG_COLOR_STYLED = UNKNOWN;
82const IMG_COLOR_BRUSHED = UNKNOWN;
92const IMG_COLOR_TRANSPARENT = UNKNOWN;
93
94/* for imagefilledarc */
95
100const IMG_ARC_ROUNDED = UNKNOWN;
105const IMG_ARC_PIE = UNKNOWN;
110const IMG_ARC_CHORD = UNKNOWN;
115const IMG_ARC_NOFILL = UNKNOWN;
120const IMG_ARC_EDGED = UNKNOWN;
121
122/* GD2 image format types */
123
128const IMG_GD2_RAW = UNKNOWN;
133const IMG_GD2_COMPRESSED = UNKNOWN;
138const IMG_FLIP_HORIZONTAL = UNKNOWN;
143const IMG_FLIP_VERTICAL = UNKNOWN;
148const IMG_FLIP_BOTH = UNKNOWN;
153const IMG_EFFECT_REPLACE = UNKNOWN;
158const IMG_EFFECT_ALPHABLEND = UNKNOWN;
163const IMG_EFFECT_NORMAL = UNKNOWN;
168const IMG_EFFECT_OVERLAY = UNKNOWN;
169
170#ifdef gdEffectMultiply
175const IMG_EFFECT_MULTIPLY = UNKNOWN;
176#endif
177
182const IMG_CROP_DEFAULT = UNKNOWN;
187const IMG_CROP_TRANSPARENT = UNKNOWN;
192const IMG_CROP_BLACK = UNKNOWN;
197const IMG_CROP_WHITE = UNKNOWN;
202const IMG_CROP_SIDES = UNKNOWN;
207const IMG_CROP_THRESHOLD = UNKNOWN;
208
213const IMG_BELL = UNKNOWN;
218const IMG_BESSEL = UNKNOWN;
223const IMG_BILINEAR_FIXED = UNKNOWN;
228const IMG_BICUBIC = UNKNOWN;
233const IMG_BICUBIC_FIXED = UNKNOWN;
238const IMG_BLACKMAN = UNKNOWN;
243const IMG_BOX = UNKNOWN;
248const IMG_BSPLINE = UNKNOWN;
253const IMG_CATMULLROM = UNKNOWN;
258const IMG_GAUSSIAN = UNKNOWN;
263const IMG_GENERALIZED_CUBIC = UNKNOWN;
268const IMG_HERMITE = UNKNOWN;
273const IMG_HAMMING = UNKNOWN;
278const IMG_HANNING = UNKNOWN;
283const IMG_MITCHELL = UNKNOWN;
288const IMG_POWER = UNKNOWN;
293const IMG_QUADRATIC = UNKNOWN;
298const IMG_SINC = UNKNOWN;
303const IMG_NEAREST_NEIGHBOUR = UNKNOWN;
308const IMG_WEIGHTED4 = UNKNOWN;
313const IMG_TRIANGLE = UNKNOWN;
314
319const IMG_AFFINE_TRANSLATE = UNKNOWN;
324const IMG_AFFINE_SCALE = UNKNOWN;
329const IMG_AFFINE_ROTATE = UNKNOWN;
340
345const GD_BUNDLED = UNKNOWN;
346
347/* Section Filters */
348
353const IMG_FILTER_NEGATE = UNKNOWN;
358const IMG_FILTER_GRAYSCALE = UNKNOWN;
363const IMG_FILTER_BRIGHTNESS = UNKNOWN;
368const IMG_FILTER_CONTRAST = UNKNOWN;
373const IMG_FILTER_COLORIZE = UNKNOWN;
378const IMG_FILTER_EDGEDETECT = UNKNOWN;
393const IMG_FILTER_EMBOSS = UNKNOWN;
403const IMG_FILTER_SMOOTH = UNKNOWN;
408const IMG_FILTER_PIXELATE = UNKNOWN;
413const IMG_FILTER_SCATTER = UNKNOWN;
414
415#ifdef GD_VERSION_STRING
420const GD_VERSION = UNKNOWN;
421#endif
422
423#if (defined(GD_MAJOR_VERSION) && defined(GD_MINOR_VERSION) && defined(GD_RELEASE_VERSION) && defined(GD_EXTRA_VERSION))
428const GD_MAJOR_VERSION = UNKNOWN;
433const GD_MINOR_VERSION = UNKNOWN;
438const GD_RELEASE_VERSION = UNKNOWN;
443const GD_EXTRA_VERSION = UNKNOWN;
444#endif
445
446#ifdef HAVE_GD_PNG
447/*
448 * cannot include #include "png.h"
449 * /usr/include/pngconf.h:310:2: error: #error png.h already includes setjmp.h with some additional fixup.
450 * as error, use the values for now...
451 */
453const PNG_NO_FILTER = 0x00;
455const PNG_FILTER_NONE = 0x08;
457const PNG_FILTER_SUB = 0x10;
459const PNG_FILTER_UP = 0x20;
461const PNG_FILTER_AVG = 0x40;
463const PNG_FILTER_PAETH = 0x80;
465const PNG_ALL_FILTERS = 0x08 | 0x10 | 0x20 | 0x40 | 0x80;
466#endif
467
472final class GdImage {}
473
478final class GdFont {}
479
484function gd_info(): array {}
485
487
488function imagesetstyle(GdImage $image, array $style): bool {}
489
491function imagecreatetruecolor(int $width, int $height): GdImage|false {}
492
494
495function imagetruecolortopalette(GdImage $image, bool $dither, int $num_colors): bool {}
496
498
499function imagecolormatch(GdImage $image1, GdImage $image2): bool {}
500
501function imagesetthickness(GdImage $image, int $thickness): bool {}
502
503function imagefilledellipse(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $color): bool {}
504
505function imagefilledarc(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $start_angle, int $end_angle, int $color, int $style): bool {}
506
507function imagealphablending(GdImage $image, bool $enable): bool {}
508
509function imagesavealpha(GdImage $image, bool $enable): bool {}
510
511function imagelayereffect(GdImage $image, int $effect): bool {}
512
513function imagecolorallocatealpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int|false {}
514
515function imagecolorresolvealpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int {}
516
517function imagecolorclosestalpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int {}
518
519function imagecolorexactalpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int {}
520
521function imagecopyresampled(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height): bool {}
522
523#ifdef PHP_WIN32
524
526function imagegrabwindow(int $handle, bool $client_area = false): GdImage|false {}
527
530
531#endif
532
534function imagerotate(GdImage $image, float $angle, int $background_color): GdImage|false {}
535
536function imagesettile(GdImage $image, GdImage $tile): bool {}
537
538function imagesetbrush(GdImage $image, GdImage $brush): bool {}
539
541function imagecreate(int $width, int $height): GdImage|false {}
542
545
548
549#ifdef HAVE_GD_AVIF
552#endif
553
556
557#ifdef HAVE_GD_JPG
560#endif
561
562#ifdef HAVE_GD_PNG
565#endif
566
567#ifdef HAVE_GD_WEBP
570#endif
571
574
575#ifdef HAVE_GD_XPM
578#endif
579
582
585
588
590function imagecreatefromgd2part(string $filename, int $x, int $y, int $width, int $height): GdImage|false {}
591
592#ifdef HAVE_GD_BMP
595#endif
596
597#ifdef HAVE_GD_TGA
599#endif
600
601function imagexbm(GdImage $image, ?string $filename, ?int $foreground_color = null): bool {}
602
603#ifdef HAVE_GD_AVIF
605function imageavif(GdImage $image, $file = null, int $quality = -1, int $speed = -1): bool {}
606#endif
607
609function imagegif(GdImage $image, $file = null): bool {}
610
611#ifdef HAVE_GD_PNG
613function imagepng(GdImage $image, $file = null, int $quality = -1, int $filters = -1): bool {}
614#endif
615
616#ifdef HAVE_GD_WEBP
618function imagewebp(GdImage $image, $file = null, int $quality = -1): bool {}
619#endif
620
621#ifdef HAVE_GD_JPG
623function imagejpeg(GdImage $image, $file = null, int $quality = -1): bool {}
624#endif
625
627function imagewbmp(GdImage $image, $file = null, ?int $foreground_color = null): bool {}
628
629function imagegd(GdImage $image, ?string $file = null): bool {}
630
631function imagegd2(GdImage $image, ?string $file = null, int $chunk_size = 128, int $mode = IMG_GD2_RAW): bool {}
632
633#ifdef HAVE_GD_BMP
635function imagebmp(GdImage $image, $file = null, bool $compressed = true): bool {}
636#endif
637
639
640function imagecolorallocate(GdImage $image, int $red, int $green, int $blue): int|false {}
641
643
644function imagecolorat(GdImage $image, int $x, int $y): int|false {}
645
646function imagecolorclosest(GdImage $image, int $red, int $green, int $blue): int {}
647
648function imagecolorclosesthwb(GdImage $image, int $red, int $green, int $blue): int {}
649
650function imagecolordeallocate(GdImage $image, int $color): bool {}
651
652function imagecolorresolve(GdImage $image, int $red, int $green, int $blue): int {}
653
654function imagecolorexact(GdImage $image, int $red, int $green, int $blue): int {}
655
656function imagecolorset(GdImage $image, int $color, int $red, int $green, int $blue, int $alpha = 0): false|null {}
657
662function imagecolorsforindex(GdImage $image, int $color): array {}
663
664function imagegammacorrect(GdImage $image, float $input_gamma, float $output_gamma): bool {}
665
666function imagesetpixel(GdImage $image, int $x, int $y, int $color): bool {}
667
668function imageline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {}
669
670function imagedashedline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {}
671
672function imagerectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {}
673
674function imagefilledrectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {}
675
676function imagearc(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $start_angle, int $end_angle, int $color): bool {}
677
678function imageellipse(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $color): bool {}
679
680function imagefilltoborder(GdImage $image, int $x, int $y, int $border_color, int $color): bool {}
681
682function imagefill(GdImage $image, int $x, int $y, int $color): bool {}
683
685
686function imagecolortransparent(GdImage $image, ?int $color = null): int {}
687
688function imageinterlace(GdImage $image, ?bool $enable = null): bool {}
689
690function imagepolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color = null): bool {}
691
692function imageopenpolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color = null): bool {}
693
694function imagefilledpolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color = null): bool {}
695
697
699
700function imagechar(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color): bool {}
701
702function imagecharup(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color): bool {}
703
704function imagestring(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color): bool {}
705
706function imagestringup(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color): bool {}
707
708function imagecopy(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height): bool {}
709
710function imagecopymerge(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height, int $pct): bool {}
711
712function imagecopymergegray(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height, int $pct): bool {}
713
714function imagecopyresized(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height): bool {}
715
716function imagesx(GdImage $image): int {}
717
718function imagesy(GdImage $image): int {}
719
720function imagesetclip(GdImage $image, int $x1, int $y1, int $x2, int $y2): bool {}
721
727
728#ifdef HAVE_GD_FREETYPE
733function imageftbbox(float $size, float $angle, string $font_filename, string $string, array $options = []): array|false {}
734
739function imagefttext(GdImage $image, float $size, float $angle, int $x, int $y, int $color, string $font_filename, string $text, array $options = []): array|false {}
740
745function imagettfbbox(float $size, float $angle, string $font_filename, string $string, array $options = []): array|false {}
746
751function imagettftext(GdImage $image, float $size, float $angle, int $x, int $y, int $color, string $font_filename, string $text, array $options = []): array|false {}
752#endif
753
755function imagefilter(GdImage $image, int $filter, ...$args): bool {}
756
757function imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset): bool {}
758
759function imageflip(GdImage $image, int $mode): bool {}
760
761function imageantialias(GdImage $image, bool $enable): bool {}
762
764function imagecrop(GdImage $image, array $rectangle): GdImage|false {}
765
767function imagecropauto(GdImage $image, int $mode = IMG_CROP_DEFAULT, float $threshold = 0.5, int $color = -1): GdImage|false {}
768
770function imagescale(GdImage $image, int $width, int $height = -1, int $mode = IMG_BILINEAR_FIXED): GdImage|false {}
771
773function imageaffine(GdImage $image, array $affine, ?array $clip = null): GdImage|false {}
774
780function imageaffinematrixget(int $type, $options): array|false {}
781
786function imageaffinematrixconcat(array $matrix1, array $matrix2): array|false {}
787
789
791
796function imageresolution(GdImage $image, ?int $resolution_x = null, ?int $resolution_y = null): array|bool {}
$filename
Definition create.php:9
$file
Definition encryption.php:9
$text
$data
Definition bench.php:6
if(PHP_SAPI !='cli') if($argc< 1) $options
Definition ext_skel.php:376
#define GD_MAJOR_VERSION
Definition gd.h:14
#define GD_MINOR_VERSION
Definition gd.h:15
#define GD_RELEASE_VERSION
Definition gd.h:16
#define GD_EXTRA_VERSION
Definition gd.h:17
imagecharup(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color)
Definition gd.stub.php:702
const IMG_COLOR_STYLED
Definition gd.stub.php:77
imagebmp(GdImage $image, $file=null, bool $compressed=true)
Definition gd.stub.php:635
imagecreatefromgif(string $filename)
Definition gd.stub.php:555
const IMG_GENERALIZED_CUBIC
Definition gd.stub.php:263
const IMG_FILTER_NEGATE
Definition gd.stub.php:353
imagesx(GdImage $image)
Definition gd.stub.php:716
const IMG_WEBP
Definition gd.stub.php:44
imagefilledpolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color=null)
Definition gd.stub.php:694
imagecreatefromgd2(string $filename)
Definition gd.stub.php:587
const IMG_FILTER_EDGEDETECT
Definition gd.stub.php:378
imagettfbbox(float $size, float $angle, string $font_filename, string $string, array $options=[])
Definition gd.stub.php:745
const IMG_CROP_BLACK
Definition gd.stub.php:192
imagecreatetruecolor(int $width, int $height)
Definition gd.stub.php:491
const IMG_AFFINE_TRANSLATE
Definition gd.stub.php:319
const IMG_ARC_EDGED
Definition gd.stub.php:120
imagepalettecopy(GdImage $dst, GdImage $src)
Definition gd.stub.php:642
imagefilledrectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color)
Definition gd.stub.php:674
const IMG_TRIANGLE
Definition gd.stub.php:313
const IMG_CROP_THRESHOLD
Definition gd.stub.php:207
const IMG_CROP_WHITE
Definition gd.stub.php:197
imageaffinematrixconcat(array $matrix1, array $matrix2)
Definition gd.stub.php:786
imagetruecolortopalette(GdImage $image, bool $dither, int $num_colors)
Definition gd.stub.php:495
imageflip(GdImage $image, int $mode)
Definition gd.stub.php:759
imagefontwidth(GdFont|int $font)
Definition gd.stub.php:696
imagecreatefromwbmp(string $filename)
Definition gd.stub.php:581
imagecreate(int $width, int $height)
Definition gd.stub.php:541
imagerotate(GdImage $image, float $angle, int $background_color)
Definition gd.stub.php:534
imagecolorset(GdImage $image, int $color, int $red, int $green, int $blue, int $alpha=0)
Definition gd.stub.php:656
imagefontheight(GdFont|int $font)
Definition gd.stub.php:698
const IMG_CROP_TRANSPARENT
Definition gd.stub.php:187
imagegrabscreen()
Definition gd.stub.php:529
const IMG_HAMMING
Definition gd.stub.php:273
const PNG_FILTER_PAETH
Definition gd.stub.php:463
imageopenpolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color=null)
Definition gd.stub.php:692
imageantialias(GdImage $image, bool $enable)
Definition gd.stub.php:761
imagecopy(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height)
Definition gd.stub.php:708
const IMG_FILTER_SELECTIVE_BLUR
Definition gd.stub.php:388
imagejpeg(GdImage $image, $file=null, int $quality=-1)
Definition gd.stub.php:623
const PNG_FILTER_UP
Definition gd.stub.php:459
const IMG_SINC
Definition gd.stub.php:298
imagesetstyle(GdImage $image, array $style)
Definition gd.stub.php:488
const IMG_JPEG
Definition gd.stub.php:24
const IMG_HERMITE
Definition gd.stub.php:268
imagecreatefromgd(string $filename)
Definition gd.stub.php:584
imagecopyresized(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height)
Definition gd.stub.php:714
const IMG_FILTER_CONTRAST
Definition gd.stub.php:368
imagecolortransparent(GdImage $image, ?int $color=null)
Definition gd.stub.php:686
const IMG_CROP_DEFAULT
Definition gd.stub.php:182
const IMG_WEIGHTED4
Definition gd.stub.php:308
imagecropauto(GdImage $image, int $mode=IMG_CROP_DEFAULT, float $threshold=0.5, int $color=-1)
Definition gd.stub.php:767
const IMG_GD2_RAW
Definition gd.stub.php:128
const IMG_BMP
Definition gd.stub.php:49
const IMG_BOX
Definition gd.stub.php:243
const IMG_FILTER_PIXELATE
Definition gd.stub.php:408
imagepng(GdImage $image, $file=null, int $quality=-1, int $filters=-1)
Definition gd.stub.php:613
imagecolorstotal(GdImage $image)
Definition gd.stub.php:684
const IMG_AFFINE_SHEAR_HORIZONTAL
Definition gd.stub.php:334
imagearc(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $start_angle, int $end_angle, int $color)
Definition gd.stub.php:676
const IMG_ARC_PIE
Definition gd.stub.php:105
const IMG_BICUBIC_FIXED
Definition gd.stub.php:233
const GD_BUNDLED
Definition gd.stub.php:345
imagedashedline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color)
Definition gd.stub.php:670
const IMG_GAUSSIAN
Definition gd.stub.php:258
imagecreatefromgd2part(string $filename, int $x, int $y, int $width, int $height)
Definition gd.stub.php:590
imagettftext(GdImage $image, float $size, float $angle, int $x, int $y, int $color, string $font_filename, string $text, array $options=[])
Definition gd.stub.php:751
const IMG_WBMP
Definition gd.stub.php:34
imagecopyresampled(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height)
Definition gd.stub.php:521
imageaffine(GdImage $image, array $affine, ?array $clip=null)
Definition gd.stub.php:773
imagecolorresolve(GdImage $image, int $red, int $green, int $blue)
Definition gd.stub.php:652
const IMG_FILTER_GRAYSCALE
Definition gd.stub.php:358
const PNG_FILTER_AVG
Definition gd.stub.php:461
const IMG_COLOR_BRUSHED
Definition gd.stub.php:82
const IMG_BILINEAR_FIXED
Definition gd.stub.php:223
imagelayereffect(GdImage $image, int $effect)
Definition gd.stub.php:511
gd_info()
Definition gd.stub.php:484
imagecolormatch(GdImage $image1, GdImage $image2)
Definition gd.stub.php:499
imagestringup(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color)
Definition gd.stub.php:706
imagecolorclosesthwb(GdImage $image, int $red, int $green, int $blue)
Definition gd.stub.php:648
imagefttext(GdImage $image, float $size, float $angle, int $x, int $y, int $color, string $font_filename, string $text, array $options=[])
Definition gd.stub.php:739
const IMG_AVIF
Definition gd.stub.php:9
const IMG_BLACKMAN
Definition gd.stub.php:238
const PNG_FILTER_NONE
Definition gd.stub.php:455
imagexbm(GdImage $image, ?string $filename, ?int $foreground_color=null)
Definition gd.stub.php:601
const IMG_BICUBIC
Definition gd.stub.php:228
imagesetinterpolation(GdImage $image, int $method=IMG_BILINEAR_FIXED)
Definition gd.stub.php:790
const IMG_JPG
Definition gd.stub.php:19
const IMG_BESSEL
Definition gd.stub.php:218
const IMG_CROP_SIDES
Definition gd.stub.php:202
imagecreatefromavif(string $filename)
Definition gd.stub.php:551
const IMG_MITCHELL
Definition gd.stub.php:283
const IMG_TGA
Definition gd.stub.php:54
imagesetclip(GdImage $image, int $x1, int $y1, int $x2, int $y2)
Definition gd.stub.php:720
imagegif(GdImage $image, $file=null)
Definition gd.stub.php:609
imageloadfont(string $filename)
Definition gd.stub.php:486
imagescale(GdImage $image, int $width, int $height=-1, int $mode=IMG_BILINEAR_FIXED)
Definition gd.stub.php:770
const IMG_AFFINE_SHEAR_VERTICAL
Definition gd.stub.php:339
const IMG_XPM
Definition gd.stub.php:39
imageellipse(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $color)
Definition gd.stub.php:678
imagecolorexact(GdImage $image, int $red, int $green, int $blue)
Definition gd.stub.php:654
imagecolorsforindex(GdImage $image, int $color)
Definition gd.stub.php:662
const IMG_PNG
Definition gd.stub.php:29
imagedestroy(GdImage $image)
Definition gd.stub.php:638
imageavif(GdImage $image, $file=null, int $quality=-1, int $speed=-1)
Definition gd.stub.php:605
const IMG_FILTER_MEAN_REMOVAL
Definition gd.stub.php:398
const IMG_FILTER_COLORIZE
Definition gd.stub.php:373
imageftbbox(float $size, float $angle, string $font_filename, string $string, array $options=[])
Definition gd.stub.php:733
imagecreatefrompng(string $filename)
Definition gd.stub.php:564
imageinterlace(GdImage $image, ?bool $enable=null)
Definition gd.stub.php:688
imagecreatefromwebp(string $filename)
Definition gd.stub.php:569
const IMG_FLIP_VERTICAL
Definition gd.stub.php:143
const IMG_FLIP_HORIZONTAL
Definition gd.stub.php:138
imagerectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color)
Definition gd.stub.php:672
const IMG_BELL
Definition gd.stub.php:213
const PNG_FILTER_SUB
Definition gd.stub.php:457
imagecolorallocatealpha(GdImage $image, int $red, int $green, int $blue, int $alpha)
Definition gd.stub.php:513
imagepolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color=null)
Definition gd.stub.php:690
const IMG_POWER
Definition gd.stub.php:288
imagecopymerge(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height, int $pct)
Definition gd.stub.php:710
imagecolorallocate(GdImage $image, int $red, int $green, int $blue)
Definition gd.stub.php:640
imagesetpixel(GdImage $image, int $x, int $y, int $color)
Definition gd.stub.php:666
const PNG_ALL_FILTERS
Definition gd.stub.php:465
const IMG_AFFINE_ROTATE
Definition gd.stub.php:329
imagecreatefromxbm(string $filename)
Definition gd.stub.php:573
const IMG_CATMULLROM
Definition gd.stub.php:253
imagealphablending(GdImage $image, bool $enable)
Definition gd.stub.php:507
imagesy(GdImage $image)
Definition gd.stub.php:718
const GD_VERSION
Definition gd.stub.php:420
imagefilter(GdImage $image, int $filter,... $args)
Definition gd.stub.php:755
imagecolordeallocate(GdImage $image, int $color)
Definition gd.stub.php:650
imagewbmp(GdImage $image, $file=null, ?int $foreground_color=null)
Definition gd.stub.php:627
imagesetthickness(GdImage $image, int $thickness)
Definition gd.stub.php:501
const PNG_NO_FILTER
Definition gd.stub.php:453
imagesettile(GdImage $image, GdImage $tile)
Definition gd.stub.php:536
const IMG_HANNING
Definition gd.stub.php:278
imagecreatefromjpeg(string $filename)
Definition gd.stub.php:559
imagefill(GdImage $image, int $x, int $y, int $color)
Definition gd.stub.php:682
imagetypes()
Definition gd.stub.php:544
imagecreatefromstring(string $data)
Definition gd.stub.php:547
const IMG_GD2_COMPRESSED
Definition gd.stub.php:133
imagegrabwindow(int $handle, bool $client_area=false)
Definition gd.stub.php:526
imagegd2(GdImage $image, ?string $file=null, int $chunk_size=128, int $mode=IMG_GD2_RAW)
Definition gd.stub.php:631
imagechar(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color)
Definition gd.stub.php:700
imagecreatefromtga(string $filename)
Definition gd.stub.php:598
const IMG_ARC_NOFILL
Definition gd.stub.php:115
const IMG_FILTER_EMBOSS
Definition gd.stub.php:393
const IMG_COLOR_STYLEDBRUSHED
Definition gd.stub.php:87
imagecolorexactalpha(GdImage $image, int $red, int $green, int $blue, int $alpha)
Definition gd.stub.php:519
imagegd(GdImage $image, ?string $file=null)
Definition gd.stub.php:629
imagecolorat(GdImage $image, int $x, int $y)
Definition gd.stub.php:644
imageresolution(GdImage $image, ?int $resolution_x=null, ?int $resolution_y=null)
Definition gd.stub.php:796
imagegetclip(GdImage $image)
Definition gd.stub.php:726
imagepalettetotruecolor(GdImage $image)
Definition gd.stub.php:497
const IMG_FILTER_SCATTER
Definition gd.stub.php:413
imagecolorresolvealpha(GdImage $image, int $red, int $green, int $blue, int $alpha)
Definition gd.stub.php:515
imageistruecolor(GdImage $image)
Definition gd.stub.php:493
imagecolorclosestalpha(GdImage $image, int $red, int $green, int $blue, int $alpha)
Definition gd.stub.php:517
const IMG_FILTER_BRIGHTNESS
Definition gd.stub.php:363
const IMG_COLOR_TILED
Definition gd.stub.php:72
const IMG_QUADRATIC
Definition gd.stub.php:293
imagegetinterpolation(GdImage $image)
Definition gd.stub.php:788
imagecreatefrombmp(string $filename)
Definition gd.stub.php:594
imageline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color)
Definition gd.stub.php:668
const IMG_BSPLINE
Definition gd.stub.php:248
const IMG_EFFECT_OVERLAY
Definition gd.stub.php:168
const IMG_EFFECT_NORMAL
Definition gd.stub.php:163
const IMG_FLIP_BOTH
Definition gd.stub.php:148
imagegammacorrect(GdImage $image, float $input_gamma, float $output_gamma)
Definition gd.stub.php:664
imagesavealpha(GdImage $image, bool $enable)
Definition gd.stub.php:509
const IMG_FILTER_GAUSSIAN_BLUR
Definition gd.stub.php:383
imagewebp(GdImage $image, $file=null, int $quality=-1)
Definition gd.stub.php:618
imagesetbrush(GdImage $image, GdImage $brush)
Definition gd.stub.php:538
imagefilledarc(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $start_angle, int $end_angle, int $color, int $style)
Definition gd.stub.php:505
imagestring(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color)
Definition gd.stub.php:704
imageaffinematrixget(int $type, $options)
Definition gd.stub.php:780
imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset)
Definition gd.stub.php:757
const IMG_COLOR_TRANSPARENT
Definition gd.stub.php:92
const IMG_GIF
Definition gd.stub.php:14
const IMG_ARC_ROUNDED
Definition gd.stub.php:100
const IMG_WEBP_LOSSLESS
Definition gd.stub.php:63
const IMG_EFFECT_ALPHABLEND
Definition gd.stub.php:158
const IMG_ARC_CHORD
Definition gd.stub.php:110
imagecolorclosest(GdImage $image, int $red, int $green, int $blue)
Definition gd.stub.php:646
const IMG_EFFECT_REPLACE
Definition gd.stub.php:153
imagefilledellipse(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $color)
Definition gd.stub.php:503
imagecrop(GdImage $image, array $rectangle)
Definition gd.stub.php:764
imagecreatefromxpm(string $filename)
Definition gd.stub.php:577
imagecopymergegray(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height, int $pct)
Definition gd.stub.php:712
const IMG_EFFECT_MULTIPLY
Definition gd.stub.php:175
const IMG_NEAREST_NEIGHBOUR
Definition gd.stub.php:303
imagefilltoborder(GdImage $image, int $x, int $y, int $border_color, int $color)
Definition gd.stub.php:680
const IMG_FILTER_SMOOTH
Definition gd.stub.php:403
const IMG_AFFINE_SCALE
Definition gd.stub.php:324
ZEND_API void(ZEND_FASTCALL *zend_touch_vm_stack_data)(void *vm_stack_data)
function(EX_VAR(opline->result.var))