View Single Post
Old 04-27-2013, 11:01 AM   #10
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,003
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
Quote:
Originally Posted by Doitsu View Post
AFAIK, the latest ADE version still doesn't support Arabic. However, it's possible to display Arabic text (without vowel signs) with ADE, if you're willing to jump through some hoops.

1. You'll obviously need to embed an Arabic font
2. You'll need to manually generate the Arabic context forms.
3. You'll need to reverse the order of the preshaped Arabic letters.

(The last two steps can be accomplished with this free tool.)

Since all of this is a major PITA, it's only practical for very short quotes, but it can be done.

Please find attached an excerpt from a German book available at MR that demonstrates this technique.
While playing some more with text transformations:
Spoiler:
Code:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <style> 

div
{
width:500px;
height:75px;
border:1px solid black;
text-align:center;
}

.rx
{
transform:rotateX(180deg);
-webkit-transform:rotateX(180deg);
}

.ry
{
transform:rotateY(180deg);
-webkit-transform:rotateY(180deg);
}

.rz
{
transform: rotate(180deg);
-webkit-transform:rotate(180deg);
}

.rx120
{
transform:rotateX(120deg);
-webkit-transform:rotateX(120deg);
}

</style>
    <title>CSS3 &amp; other transforms</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  </head>
  <body>

<p>no transform : 
</p><div>© Copyleft Creative Common Share Alike License</div><p></p>

<p>3D -webkit-transform:rotateX(180deg);
</p><div class="rx">© Copyleft Creative Common Share Alike License</div><p></p>

<p>3D -webkit-transform:rotateY(180deg);
</p><div class="ry">© Copyleft Creative Common Share Alike License</div><p></p>

<p>2D -webkit-transform:rotate(180deg);
</p><div class="rz">© Copyleft Creative Common Share Alike License</div><p></p>

<p>3D -webkit-transform:rotateX(180deg); 3D -webkit-transform:rotateY(180deg);
</p><div class="rx"><div class="ry">© Copyleft Creative Common Share Alike License</div></div><p></p>

<p>3D -webkit-transform:rotateX(180deg); 2D -webkit-transform:rotate(180deg);
</p><div class="rx"><div class="rz">© Copyleft Creative Common Share Alike License</div></div><p></p>

<p>3D -webkit-transform:rotateY(180deg); 2D -webkit-transform:rotate(180deg);
</p><div class="ry"><div class="rz">© Copyleft Creative Common Share Alike License</div></div><p></p>

<p>3D -webkit-transform:rotateX(180deg); 3D -webkit-transform:rotateY(180deg); 2D -webkit-transform:rotate(180deg);
</p><div class="rx"><div class="ry"><div class="rz">© Copyleft Creative Common Share Alike License</div></div></div><p></p>

<p>&lt;bdo dir="rtl"&gt; </p><div><bdo dir="rtl">© Copyleft Creative Common Share Alike License</bdo></div><p></p>

<p>3D -webkit-transform:rotateX(120deg);
</p><div class="rx120">© Copyleft Creative Common Share Alike License</div><p></p>


</body></html>


I thought that the <bdo dir="rtl"> tag in my example #9 could possibly ease step 3.
Click image for larger version

Name:	15519.gif
Views:	314
Size:	25.3 KB
ID:	105034Click image for larger version

Name:	15520.gif
Views:	319
Size:	22.7 KB
ID:	105035Click image for larger version

Name:	15521.gif
Views:	331
Size:	9.2 KB
ID:	105036

Though I still prefer the elegance of simple Unicode ʇɟǝןʎdoƆ (ↄ) for reversing (c) Copyright.
PoP is offline   Reply With Quote