Image: write on image from right to left (Arabic) support

Created on 25 Oct 2016  路  5Comments  路  Source: Intervention/image

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

Most helpful comment

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.

All 5 comments

To add more detail to the issue:

  • Letters should be written from right to left - they are currently going from left to right
  • Letters are not being joined up, certain letters have different forms based on what letter precedes of follows them or lack thereof - they are currently only showing their singular form (i.e. not joined), this may however just be because of the first RTL 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 ??

@abdullah-abunada

https://github.com/Johntaa/ar-php

I guess by composer?

thanks its work very well

Was this page helpful?
0 / 5 - 0 ratings

Related issues

divdax picture divdax  路  7Comments

theofidry picture theofidry  路  5Comments

ludo237 picture ludo237  路  8Comments

bkkrishna picture bkkrishna  路  7Comments

txusramone picture txusramone  路  6Comments