This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 调用PhotoShop按照Indesign中尺寸修改图像大小 | |
Main(); | |
function Main() { | |
var image = app.selection[0].images[0]; | |
var imagePath = image.itemLink.filePath; | |
var hScale = image.horizontalScale; | |
var vScale = image.verticalScale; | |
CreateBridgeTalkMessage(); |