Kalın olarak belirtiğim yer font büyüklüğü ayarı ben burayı 150 yaptığımda bu sefer orta büyüklükteki resimlerdeki watermark yazı devalaşıyor.
imagettftext($image, 20, 0, 10, $height, $white, $font, $text);
function watermark($resour) {
$text = 'Watermark';
$image = imagecreatefromstring(file_get_contents($resource['file']));
list($width, $height)= getimagesize($resour['file']);
$white = imagecolorallocate($image, 255, 255, 255);
$font = get_template_directory() . '/images/Roboto-Bold.ttf';
imagettftext($image, 20, 0, 10, $height, $white, $font, $text);
imagejpeg($image, $resour['file']);
imagedestroy($image);
return $resour;
}