zmienilem tylko orientacje tekstu
<?php // Set the content-type // Create the image $im = imagecreatetruecolor(40, 200); // Create some colors $white = imagecolorallocate($im, 255, 255, 255); $grey = imagecolorallocate($im, 128, 128, 128); $sl = imagecolorallocate($im, 200, 8, 250); $black = imagecolorallocate($im, 0, 0, 0); imagefilledrectangle($im, 10, 10, 300, 200, $white); // The text to draw $text = 'Testowanie '; // Replace path by your own font path $font = 'arial.ttf'; // Add some shadow to the text imagettftext($im, 20, 90, 30, 200, $grey, $font, $text); // Add the text imagettftext($im, 20, 90, 31, 198, $sl, $font, $text); // Using imagepng() results in clearer text compared with imagejpeg() imagepng($im); imagedestroy($im); ?>
i tutaj jest
to pogrubione 90 to kąt .
<?php imagettftext($im, 20,[b] 90[/b], 31, 198, $sl, $font, $text); ?>
Dobra a jak bym chciał umieścić coś innego pod tym kątem nie wygenerowany obrazek tylko np. skrypt logowania obrócony o 90 stopni i doczepiony do strony z jakieś jej krawędzi

Jest jakaś funkcja którą można było by coś takiego zrobić

