I know there is a ME version of Photoshop, but I've seen a lot of plugins that do Arabic text on regular Photoshop (which include right to left text). What I'm looking for is just the right to left thing, without all the Arabic support. Is there any out there?

Basically, typing typing "HELLO" should yield "OLLEH" exactly. Individual characters should not be reversed.

link|improve this question

40% accept rate
Don't know of a plugin, but I have come across people seeing that effect on the browser forms a few times.. Always wondered what did it. – nik Aug 9 '09 at 10:23
feedback

7 Answers

Try this link http://www.flipmytext.com/textreverser.html

Type or paste your Hebrew text into the textbox box, click on the reverse text button and walla!

Now copy your reversed text. Go to Photoshop, position the type tool on your canvas and paste.

link|improve this answer
feedback

The "easy solution" I found is:

  • Type your text in a Arabic compatible Word/text editor (like AbiWord),
  • zoom in or use a large font,
  • make a screenshot and paste it into Photoshop

Alternatively I found a Javascript/Photoshop solution from Google Code which is meaned for Mac, but they claim it should work for Windows too. He also mentions that you could use GIMP to create the Arabic text, just copy+paste it to Photoshop and you should be done.

Here's what Yaman says it does:

If you have had difficulties typing Arabic text into Photoshop, I have created a Google Code project to develop an open-source script that will provide a solution: Arabic4MacPhotoshop. The Photoshop Script that I wrote will enable Photoshop users to create properly shaped Arabic text in Photoshop graphics.

alt text

Currently, Arabic text in Photoshop on Mac appears as disconnected characters in backwards-order (pictured to the right). My script, which does not work in all cases and may require some additional fiddling on the part of the user, will automatically convert Arabic text you have entered into Photoshop into legible Arabic script. It will automatically remove all diacritic marks from your text and create individual text layers for each marking, so that you can position them in the correct spot above the appropriate letter. Unfortunately, I don’t know of any simple way to avoid this extra step for the time being.

alt text

What this script does is evaluate Arabic characters to determine what the correct shape should be, whether it is at the beginning, middle, or end of a word, and what the preceding character is. It then converts the Unicode representation in memory to the one for the specific ligature rather than the base character. It will then create a new Text Layer with the “fixed” text, as well as additional layers for any diacritic mark (fatha, domma, kasra, shaddeh, etcetera). If you wish to edit your text after this point, you must repeat the process and edit the original, disconnected, backwards text, rather than the “fixed” text. Otherwise you will run into problems.

While this script does not solve all issues, it provides an alternative fix for probably an overwhelming amount of Arabic work that needs to be done in Photoshop. One solution for Mac Photoshop users is this $1,700 modified application which supposedly has completely integrated Arabic functionality as well as other features. I have never used this program since it is more expensive even than the original Photoshop. The other option is to use the free and open-source program the GIMP, which works on Windows, Linux, and Mac, and fully supports Arabic text.

link|improve this answer
GiMP is the free route. And it should be able to manipulate photoshop files. – jweede Aug 12 '09 at 13:11
Know about both the solutions, the second one is closer to what I'm looking for except I don't want the Arabic thing (I'm searching for a Hebrew solution). I guess if I won't find a ready made solution for this, I'll have to fiddle with that javascript to make it work with Hebrew. – kkaploon Aug 12 '09 at 14:06
Ah you mentioned Arabic, so I assumed that was what you wanted. BTW I think you can run that Javascript in Photoshop itself (perhaps check the Google code page) – Ivo Flipse Aug 12 '09 at 14:33
Do you need a permanent solution? Else you could install a trial version of ME and copy+paste whatever you need. You could even run the trial version again and again to have it "permanently"... – Ivo Flipse Aug 12 '09 at 14:42
"You could even run the trial version again and again to have it permanently" - there are protections against that kind of stuff nowadays, and yes I need a permanent solution. – kkaploon Aug 13 '09 at 9:59
feedback

You should be able to make a text box object that says "HELLO" then grab the left side and swing it over to reverse it.

In Illustrator you can do Object -> Transform -> Reflect -> Vertical Axis and it does this, still leaving the text editable. Photoshop should be similar.

I'm pretty sure you don't need a plugin.

link|improve this answer
The problem is that also reverses the letters themselves. I just want HELLO to becoume OLLEH (it turns it to something like OJJ3H) – kkaploon Aug 9 '09 at 22:35
OHhhh. I dunno then, maybe string-functions.com/reverse.aspx and then cut and paste the result? – hyperslug Aug 10 '09 at 0:49
yeah I know about a few of these, but there is got to be a better solution than cut-pasting from a website :( – kkaploon Aug 10 '09 at 8:42
can you update the top? I was thinking the same thing as well. – IPX Ares Aug 17 '09 at 21:09
feedback

With a text layer, can't you simply Transform -> Flip Horizontal ?

link|improve this answer
No, becouse like I said for the last answer, it flips the letters themselves, and I don't want that. I want the letters to remain normal, but the order of them to change. – kkaploon Aug 12 '09 at 8:31
1  
What's wrong with typing them backwards? – EvilChookie Aug 12 '09 at 16:44
1  
@evilchookie: ?sdrawkcab gnipyt elihw ylevitceffe krow ot deirt uoy emit tsal eht saw nehW – Antony Aug 14 '09 at 3:43
@Antony: .smurof nigulp ro smurof lairotut no ti rof llac fo tol a nees t'nevah I , yas ot evah dnA. netfo od I gnihtemos yltcaxe ton s'tI (Do you put a full stop when writing a sentence backwards?) – EvilChookie Aug 14 '09 at 5:42
feedback

A simple autohotkey script could be used to reverse the text, though it's not natively in PS, it should work fine. Should.

#q::
oldClip:=clipboardAll
send ^c
clipwait
StringLen, len, clipboard
reversed:=
Loop, %len%
{
StringMid,toAdd,clipboard,len-(A_Index-1),1
reversed=%reversed%%toAdd%
}
send %reversed%
clipboard:=oldClip
return
link|improve this answer
feedback

I think you should be able to create a Photoshop script that does this. It's scriptable in javascript, and reversing a string is CompSci 101, so there should be plenty of examples on the web.

link|improve this answer
feedback

Actually, you can now edit text in Arabic in CS4 and CS5 IF you already have a type layer with Arabic text to begin with. You can get such a template at http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=1061&fileID=3813 (works on Windows or Mac)

link|improve this answer
feedback

protected by studiohack Apr 27 '11 at 1:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.