Lines Matching refs:GdImage

9 final class GdImage {}  class
25 function imagesetstyle(GdImage $image, array $style): bool {}
28 function imagecreatetruecolor(int $width, int $height): GdImage|false {}
30 function imageistruecolor(GdImage $image): bool {}
32 function imagetruecolortopalette(GdImage $image, bool $dither, int $num_colors): bool {}
34 function imagepalettetotruecolor(GdImage $image): bool {}
36 function imagecolormatch(GdImage $image1, GdImage $image2): bool {}
38 function imagesetthickness(GdImage $image, int $thickness): bool {}
40 function imagefilledellipse(GdImage $image, int $center_x, int $center_y, int $width, int $height, …
42 function imagefilledarc(GdImage $image, int $center_x, int $center_y, int $width, int $height, int …
44 function imagealphablending(GdImage $image, bool $enable): bool {}
46 function imagesavealpha(GdImage $image, bool $enable): bool {}
48 function imagelayereffect(GdImage $image, int $effect): bool {}
50 function imagecolorallocatealpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int|…
52 function imagecolorresolvealpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int {}
54 function imagecolorclosestalpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int {}
56 function imagecolorexactalpha(GdImage $image, int $red, int $green, int $blue, int $alpha): int {}
58 function imagecopyresampled(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $sr…
63 function imagegrabwindow(int $handle, bool $client_area = false): GdImage|false {}
66 function imagegrabscreen(): GdImage|false {}
72 function imagerotate(GdImage $image, float $angle, int $background_color, bool $ignore_transparent …
74 function imagesettile(GdImage $image, GdImage $tile): bool {}
76 function imagesetbrush(GdImage $image, GdImage $brush): bool {}
79 function imagecreate(int $width, int $height): GdImage|false {}
84 function imagecreatefromstring(string $data): GdImage|false {}
88 function imagecreatefromavif(string $filename): GdImage|false {}
92 function imagecreatefromgif(string $filename): GdImage|false {}
96 function imagecreatefromjpeg(string $filename): GdImage|false {}
101 function imagecreatefrompng(string $filename): GdImage|false {}
106 function imagecreatefromwebp(string $filename): GdImage|false {}
110 function imagecreatefromxbm(string $filename): GdImage|false {}
114 function imagecreatefromxpm(string $filename): GdImage|false {}
118 function imagecreatefromwbmp(string $filename): GdImage|false {}
121 function imagecreatefromgd(string $filename): GdImage|false {}
124 function imagecreatefromgd2(string $filename): GdImage|false {}
127 function imagecreatefromgd2part(string $filename, int $x, int $y, int $width, int $height): GdImage
131 function imagecreatefrombmp(string $filename): GdImage|false {}
135 function imagecreatefromtga(string $filename): GdImage|false {}
138 function imagexbm(GdImage $image, ?string $filename, ?int $foreground_color = null): bool {}
142 function imageavif(GdImage $image, $file = null, int $quality = -1, int $speed = -1): bool {}
146 function imagegif(GdImage $image, $file = null): bool {}
150 function imagepng(GdImage $image, $file = null, int $quality = -1, int $filters = -1): bool {}
155 function imagewebp(GdImage $image, $file = null, int $quality = -1): bool {}
160 function imagejpeg(GdImage $image, $file = null, int $quality = -1): bool {}
164 function imagewbmp(GdImage $image, $file = null, ?int $foreground_color = null): bool {}
166 function imagegd(GdImage $image, ?string $file = null): bool {}
168 function imagegd2(GdImage $image, ?string $file = null, int $chunk_size = UNKNOWN, int $mode = UNKN…
172 function imagebmp(GdImage $image, $file = null, bool $compressed = true): bool {}
175 function imagedestroy(GdImage $image): bool {}
177 function imagecolorallocate(GdImage $image, int $red, int $green, int $blue): int|false {}
179 function imagepalettecopy(GdImage $dst, GdImage $src): void {}
181 function imagecolorat(GdImage $image, int $x, int $y): int|false {}
183 function imagecolorclosest(GdImage $image, int $red, int $green, int $blue): int {}
185 function imagecolorclosesthwb(GdImage $image, int $red, int $green, int $blue): int {}
187 function imagecolordeallocate(GdImage $image, int $color): bool {}
189 function imagecolorresolve(GdImage $image, int $red, int $green, int $blue): int {}
191 function imagecolorexact(GdImage $image, int $red, int $green, int $blue): int {}
194 function imagecolorset(GdImage $image, int $color, int $red, int $green, int $blue, int $alpha = 0)…
200 function imagecolorsforindex(GdImage $image, int $color): array {}
202 function imagegammacorrect(GdImage $image, float $input_gamma, float $output_gamma): bool {}
204 function imagesetpixel(GdImage $image, int $x, int $y, int $color): bool {}
206 function imageline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {}
208 function imagedashedline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {}
210 function imagerectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {}
212 function imagefilledrectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool…
214 function imagearc(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $start…
216 function imageellipse(GdImage $image, int $center_x, int $center_y, int $width, int $height, int $c…
218 function imagefilltoborder(GdImage $image, int $x, int $y, int $border_color, int $color): bool {}
220 function imagefill(GdImage $image, int $x, int $y, int $color): bool {}
222 function imagecolorstotal(GdImage $image): int {}
224 function imagecolortransparent(GdImage $image, ?int $color = null): int {}
226 function imageinterlace(GdImage $image, ?bool $enable = null): bool {}
228 function imagepolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color = null):…
230 function imageopenpolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color = nu…
232 function imagefilledpolygon(GdImage $image, array $points, int $num_points_or_color, ?int $color = …
238 function imagechar(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color): boo…
240 function imagecharup(GdImage $image, GdFont|int $font, int $x, int $y, string $char, int $color): b…
242 function imagestring(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color):…
244 function imagestringup(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color…
246 function imagecopy(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x, int …
248 function imagecopymerge(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_x,…
250 function imagecopymergegray(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $sr…
252 function imagecopyresized(GdImage $dst_image, GdImage $src_image, int $dst_x, int $dst_y, int $src_…
254 function imagesx(GdImage $image): int {}
256 function imagesy(GdImage $image): int {}
258 function imagesetclip(GdImage $image, int $x1, int $y1, int $x2, int $y2): bool {}
264 function imagegetclip(GdImage $image): array {}
277 function imagefttext(GdImage $image, float $size, float $angle, int $x, int $y, int $color, string …
289 function imagettftext(GdImage $image, float $size, float $angle, int $x, int $y, int $color, string…
293 function imagefilter(GdImage $image, int $filter, ...$args): bool {}
295 function imageconvolution(GdImage $image, array $matrix, float $divisor, float $offset): bool {}
297 function imageflip(GdImage $image, int $mode): bool {}
299 function imageantialias(GdImage $image, bool $enable): bool {}
302 function imagecrop(GdImage $image, array $rectangle): GdImage|false {}
305 function imagecropauto(GdImage $image, int $mode = IMG_CROP_DEFAULT, float $threshold = 0.5, int $c…
308 function imagescale(GdImage $image, int $width, int $height = -1, int $mode = IMG_BILINEAR_FIXED):
311 function imageaffine(GdImage $image, array $affine, ?array $clip = null): GdImage|false {}
326 function imagegetinterpolation(GdImage $image): int {}
328 function imagesetinterpolation(GdImage $image, int $method = IMG_BILINEAR_FIXED): bool {}
334 function imageresolution(GdImage $image, ?int $resolution_x = null, ?int $resolution_y = null): arr…