-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Persian text results in reversed order of lines when using wrap()
#1396
Comments
Since I can't read the language, it's hard for me to debug correctly here. I will gladly accept pull requests that address this issue. For example, I can't tell if the following code block produces correct output. For me it seems correct. use Intervention\Image\ImageManager;
use Intervention\Image\Typography\FontFactory;
$image = ImageManager::gd()
->create(400, 200)
->fill('ddd');
$text = 'من
سبحان قادری
نسب هستم';
$image->text($text, 350, 150, function (FontFactory $font) {
$font->filename('./ArialUnicodeMS.ttf');
$font->size(40);
$font->color('ff5500');
$font->lineHeight(1.6);
$font->wrap(300);
$font->align('right');
}); |
olivervogel
changed the title
Persian text wrap
Persian text results in reversed order of lines when using Aug 18, 2024
wrap()
Closed
سلام به همه دوستان فارسی زبان من با این کد تونستم فنی درستش کنم $lines = explode("\n", wordwrap($text, 70));
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, I checked that in Farsi language, it reverses the text when warping
Its correct form should be as below
من
سبحان قادری
نسب هستم
The text was updated successfully, but these errors were encountered: