Ahojte.
Chcem prídať watermerk, s tým že zmenšujem obrázky. Obrázky sa pekne zmenšujú, ale text je chybný. Miesto písmen sú čierne štvorčery. Neviete kde môže byť chyba?
Ďalšie info:
Skúsil som s dvoma fontmi - arial, verdana, nepomáha.
Používam aplha.
Kód:
Kód:
if(!Empty($this->Text)){
$white = imagecolorallocate($novy, 0, 0, 0, $this->Alpha);
$rozmery_textu = imagettfbbox($this->FontSize, 0, $this->Font.".ttf", $this->Text);
imagettftext($novy, $this->FontSize, 0, (imagesx($novy) - $rozmery_textu[2]) / 2,
(imagesy($novy) - $rozmery_textu[5]) / 2, $white, $this->Font.".ttf", $this->Text);
}
Keď vyrábam obrázok:
Kód:
$novy = imagecreatetruecolor($this->Sirka, $this -> Vyska);
imagealphablending($novy, false);
imagesavealpha($novy,true);
$transparent = imagecolorallocatealpha($novy, 255, 255, 255, 127);
imagefilledrectangle($novy, 0, 0, $this->Sirka, $this -> Vyska, $transparent);
imagecopyresized($novy, $image, 0, 0, 0, 0, $this->Sirka, $this -> Vyska, imagesx($image), imagesy($image));
Obrázok generujem ako png.