Hi ,
Is there is any way to write on image from right to left like arabic ?? ?
i got this problem today and i dont know how to fix this
anyone can help please ? ?
problem example
https://s9.postimg.org/sb4ozo1un/download.jpg
i expect like
https://s22.postimg.org/ftk5pmyup/download.jpg
To add more detail to the issue:
i solve this issue by following
install the Ar-PHP Library
then do the following
$Arabic = new I18N_Arabic('Glyphs');
$name = $Arabic->utf8Glyphs($student->name_ar);
$img->text($name, 800, 220, function ($font) {
$font->file('fonts/trado.ttf');
$font->size(40);
$font->align('right');
});
i try both font trado and arial and work perfectly.
how are you installed Ar-PHP Library in Laravel ??
thanks its work very well
Most helpful comment
i solve this issue by following
install the Ar-PHP Library
then do the following
i try both font trado and arial and work perfectly.