Lines Matching refs:base2
784 * @param $base2
787 public function alignment2($image1, $base1, $image2, $base2)
793 $top = max($base1, $base2);
794 $bottom = max($height1 - $base1, $height2 - $base2);
801 imagecopy($result, $image2, $width1, $top - $base2, 0, 0, $width2, $height2);
811 * @param $base2
816 public function alignment3($image1, $base1, $image2, $base2, $image3, $base3)
824 $top = max($base1, $base2, $base3);
825 $bottom = max($height1 - $base1, $height2 - $base2, $height3 - $base3);
833 imagecopy($result, $image2, $width1, $top - $base2, 0, 0, $width2, $height2);