Lines Matching defs:base1
782 * @param $base1
787 public function alignment2($image1, $base1, $image2, $base2)
793 $top = max($base1, $base2);
794 $bottom = max($height1 - $base1, $height2 - $base2);
800 imagecopy($result, $image1, 0, $top - $base1, 0, 0, $width1, $height1);
809 * @param $base1
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);
832 imagecopy($result, $image1, 0, $top - $base1, 0, 0, $width1, $height1);