processing / p5.js

p5.js is a client-side JS platform that empowers artists, designers, students, and anyone to learn to code and express themselves creatively on the web. It is based on the core principles of Processing. http://twitter.com/p5xjs —
http://p5js.org/
GNU Lesser General Public License v2.1
21.67k stars 3.33k forks source link

textAlign wrong for Arabic #6392

Open munusshih opened 1 year ago

munusshih commented 1 year ago

Most appropriate sub-area of p5.js?

p5.js version

1.7.0

Web browser and version

chrome://version

Operating System

MacOSX

Steps to reproduce this

Steps:

  1. Import any Arabic font through preload()
  2. See how it is rendered incorrectly in p5

I personally don't read or write arabic. I just noticed this stackoverflow discussion.

This is heavily related to how opentype.js didn't know how to handle arabic. The only current solution would be, instead of using preload(), use CSS @font-face to render it so that it is drawing through the native HTML Canvas.

priyankuhazarika commented 1 year ago

@munusshih the loadFont() method of p5.js typography section does the same thing as mentioned as one solution in the stackoverflow link (Workaround 1) that you have shared! But the problem here is that, the font is applied only as@font-face css rule, and for the arabic to work i think we have to change the direction css rule to "rtl" and this needs to be applied to the particular html element of the text along with the font-family, because @font-face css rule only loads a particular font, but does not completely applies it to the html elements according to my knowledge!

davepagurek commented 1 year ago

I believe if the user is using a font from loadFont, we don't use the CSS font declaration at all, and rely on OpenType converting the line to paths: https://github.com/processing/p5.js/blob/558505e852aacca890d33f1c8f3f5e53d059e9ae/src/core/p5.Renderer2D.js#L1267-L1269

munusshih commented 1 year ago

@priyankuhazarika @davepagurek In fact, p5.js exclusively employs opentype.js only when the user explicitly invokes loadFont(). When you load fonts using any other methods, it resorts to rendering the text through the native HTML Canvas API.

That is why in workaround 1, it utilized CSS @font-face. It would not activate opentype.js to function as intended, thus earning it the label of a workaround.

Like I said, apparently this is because opentype.js doesn't support rendering of arabic correctly, which is a known and open issue here: https://github.com/opentypejs/opentype.js/issues/364

priyankuhazarika commented 1 year ago

Hmm might be the case, but i also found this piece of code @munusshih @davepagurek

https://github.com/processing/p5.js/blob/558505e852aacca890d33f1c8f3f5e53d059e9ae/src/typography/loading_displaying.js#L125C3-L134C6

Also https://github.com/opentypejs/opentype.js/issues/364 might be the case, needs further experiments on this!

davepagurek commented 1 year ago

@munusshih pointed out in another issue somewhere that we add that line but then never actually make use of it anywhere else. Relying on it more could be one direction we go in, as it would have better RTL support than opentype! We have some active discussion about that going on here if you're interested: https://github.com/processing/p5.js/issues/6391

priyankuhazarika commented 1 year ago

Ohhh i see, thanks for the reference @davepagurek

dhowe commented 2 days ago

would be great to have a range of test cases for this in v2.0