Lines Matching refs:result

308         $result = imagecreate(max($width, 1), max($height, 1));
309 $white = $this->helper->getBackColor($result);
310 imagefilledrectangle($result, 0, 0, $width - 1, $height - 1, $white);
314 … imagecopy($result, $img[$i], $pos, $top - $base[$i], 0, 0, imagesx($img[$i]), imagesy($img[$i]));
318 $this->image = $result;
336 $result = imagecreate(max($width + 5, 1), max($height, 1));
337 $black = $this->helper->getFontColor($result);
338 $white = $this->helper->getBackColor($result);
340 imagefilledrectangle($result, 0, 0, $width + 4, $height - 1, $white);
341 imagecopy($result, $img1, ($width - $width1) / 2, 0, 0, 0, $width1, $height1);
342 imageline($result, 0, $this->verticalBased, $width, $this->verticalBased, $black);
343 imagecopy($result, $img2, ($width - $width2) / 2, $height1 + 4, 0, 0, $width2, $height2);
344 $this->image = $result;
365 $result = imagecreate(max($width, 1), max($height, 1));
366 $white = $this->helper->getBackColor($result);
367 imagefilledrectangle($result, 0, 0, $width - 1, $height - 1, $white);
368 imagecopy($result, $img1, 0, ceil($height2 / 2), 0, 0, $width1, $height1);
369 imagecopy($result, $img2, $width1, 0, 0, 0, $width2, $height2);
373 $result = imagecreate(max($width, 1), max($height, 1));
374 $white = $this->helper->getBackColor($result);
375 imagefilledrectangle($result, 0, 0, $width - 1, $height - 1, $white);
376 imagecopy($result, $img1, 0, ceil($height2 - $height1 / 2), 0, 0, $width1, $height1);
377 imagecopy($result, $img2, $width1, 0, 0, 0, $width2, $height2);
379 $this->image = $result;
400 $result = imagecreate(max($width, 1), max($height, 1));
401 $white = $this->helper->getBackColor($result);
402 imagefilledrectangle($result, 0, 0, $width - 1, $height - 1, $white);
403 imagecopy($result, $img1, 0, 0, 0, 0, $width1, $height1);
404 … imagecopy($result, $img2, $width1, ceil($height1 - $height2 / 2), 0, 0, $width2, $height2);
408 $result = imagecreate(max($width, 1), max($height, 1));
409 $white = $this->helper->getBackColor($result);
410 imagefilledrectangle($result, 0, 0, $width - 1, $height - 1, $white);
411 imagecopy($result, $img1, 0, 0, 0, 0, $width1, $height1);
412 imagecopy($result, $img2, $width1, ceil($height1 / 2), 0, 0, $width2, $height2);
414 $this->image = $result;
434 $result = imagecreate(max($width, 1), max($height, 1));
435 $black = $this->helper->getFontColor($result);
436 $white = $this->helper->getBackColor($result);
437 imagefilledrectangle($result, 0, 0, $width - 1, $height - 1, $white);
438 imagecopy($result, $imgrac, 0, 0, 0, 0, $widthrac, $heightrac);
439 imagecopy($result, $imgExp, $widthrac, $height - $heightExp, 0, 0, $widthExp, $heightExp);
440 imagesetthickness($result, 1);
441 imageline($result, $widthrac - 2, 2, $widthrac + $widthExp + 2, 2, $black);
443 $this->image = $result;
468 $result = imagecreate(max($width, 1), max($height, 1));
469 $black = $this->helper->getFontColor($result);
470 $white = $this->helper->getBackColor($result);
471 imagefilledrectangle($result, 0, 0, $width - 1, $height - 1, $white);
472 imagecopy($result, $imgRac, 0, 0, 0, 0, $widthRac, $heightRac);
473 imagecopy($result, $imgExp, $widthRac, $height - $heightExp, 0, 0, $widthExp, $heightExp);
474 imagesetthickness($result, 1);
475 imageline($result, $widthRac - 2, 2, $widthRac + $widthExp + 2, 2, $black);
476 imagecopy($result, $imgRoot, 0, 0, 0, 0, $widthRoot, $heightRoot);
478 $this->image = $result;