2016-09-04 10 views
2

Photoshop 용 텍스트 레이어 및 레이어 내용의 이름을 Excel CSV 파일로 출력하는 스크립트가 있습니다. 텍스트가 영어이지만 아랍어/태국어 인 경우이 "??????"와 같이 표시됩니다. 이 텍스트를 올바르게 표시하려면 어떻게해야합니까?Photoshop을 사용하여 Excel 파일의 아랍어/태국어 텍스트 출력 JavaScript

var iLayer = app.activeDocument.activeLayer.textItem; 
var LayerContents = iLayer.contents; 

그런 다음 출력 Excel에서 이름이 같은 파일 :

var Names =[ ]; 
Names.push([LayerName + "," + LayerContents]); 

내가 아랍어 Arial이 글꼴 스타일을 변경 시도

내 스크립트는이 같은 layername 및 레이어 컨텐츠를 가져옵니다 태국어로는 Tahoma가 있지만 작동하지 않습니다. 나는 심지어 LayerContents.toString()을 변환하려고 시도했다.

답변

0

텍스트를 유니 코드로 설정해야합니다. 아래 예제에서 텍스트 파일에 레이어 이름을 씁니다. 교장은 CSV와 동일합니다.

// refer to the source document 
var srcDoc = app.activeDocument; 

var myLayerName = srcDoc.activeLayer.name; // ملعقة 
alert(myLayerName) // alerts fine; 

write_text(myLayerName, "C:\\temp\\layer_name.txt"); 


function write_text(str, apath) 
{ 
    // create a reference to a file for output 
    var txtFile = new File(apath); 

    // open the file, write the data, then close the file 
    txtFile.encoding = "UTF8"; // make it unicode 
    txtFile.open("w", "TEXT", "????"); 
    txtFile.writeln(str); 
    txtFile.close(); 
}