Skip to content

Instantly share code, notes, and snippets.

@Serifenlos
Serifenlos / gist:eb4f0dc6db8db1e5f232
Created February 8, 2016 11:36 — forked from moluapple/gist:1721220
[Indesign] ResizeImage_BT_PS
// 调用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();