Home
last modified time | relevance | path

Searched refs:gd_image (Results 1 – 3 of 3) sorted by relevance

/plugin/photogallery/phpThumb/
H A Dphpthumb.ico.php23 foreach ($gd_image_array as $key => $gd_image) {
25 $ImageWidths[$key] = imagesx($gd_image);
26 $ImageHeights[$key] = imagesy($gd_image);
27 $bpp[$key] = imageistruecolor($gd_image) ? 32 : 24;
28 $totalcolors[$key] = imagecolorstotal($gd_image);
33 $argb = phpthumb_functions::GetPixelColor($gd_image, $x, $y);
65 foreach ($gd_image_array as $key => $gd_image) {
91 foreach ($gd_image_array as $key => $gd_image) {
111 foreach ($gd_image_array as $key => $gd_image) {
H A Dphpthumb.bmp.php41 public function GD2BMPstring(&$gd_image) { argument
42 $imageX = imagesx($gd_image);
43 $imageY = imagesy($gd_image);
49 $argb = phpthumb_functions::GetPixelColor($gd_image, $x, $y);
H A Dphpthumb.class.php3763 $gd_image = false;
3788 $gd_image = $ImageCreateFromFunctionName($filename);
3822 if (!$gd_image) {
3842 $gd_image = $this->ImageCreateFromStringReplacement($rawimagedata, true);
3845 return $gd_image;