使用できます\n
$handlerData = 'textone'."\n".'texttwo'."\n".'textthree';
または、次のように関数を変更できます。
function watermarkImage ($source, $text, $destination, $x = 10, $y = 20) {
list($width, $height) = getimagesize($source);
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($source);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width, $height);
$black = imagecolorallocate($image_p, 0, 0, 0);
$font = 'arial.ttf';
$font_size = 10;
imagettftext($image_p, $font_size, 0, $x, $y, $black, $font, $text);
if ($DestinationFile<>'') {
imagejpeg ($image_p, $destination, 100);
} else {
header('Content-Type: image/jpeg');
imagejpeg($image_p, null, 100);
};
imagedestroy($image);
imagedestroy($image_p);
};
$x と $y を使用してテキストを配置できるようになりました。