我需要拍摄大约500张1024x768分辨率图像的文件夹,并将它们一次三张合并为3072x768的纯色全景图。 (不是Photoshop的光电)
我绝不是程序员;只是偶然发现这个网站,每个人似乎都很有帮助。我倾向于在Photoshop中使用java脚本可能是我最好的选择。
我将源文件重命名为:
Image_SD_1a
Image_SD_1b
Image_SD_1c
Image_SD_2a
......等等......
构建了一个三个图像,它需要以JPG格式保存到另一个文件夹中,如下:
Image_001
Image_002
......依旧......但我当然可以批量重命名。
我搜索并发现这两个脚本很接近,但我不够聪明,不能添加第三个""图像步骤,或更改文件名结构。
How to batch combine two unique series of images into a single side-by-side image in Photoshop?
Merging files together (side by side) in folder Photoshop scripts
非常感谢任何帮助!
答案 0 :(得分:0)
此脚本将执行您想要的操作。 它符合以下原则:
它并不完美,它可以改善并变得更好,但是很累,而且我的咖啡用完了。脚本如下:
//pref pixels
app.preferences.rulerUnits = Units.PIXELS;
// call the source document
var srcDoc = app.activeDocument;
var ext = getFileExtension(srcDoc);
var docPath = srcDoc.path;
// get original width and height
var imageW = srcDoc.width.value;
var imageH = srcDoc.height.value;
// name the mother
var docName = srcDoc.name;
// get names for images B & C
var imageStub = getImageName(docName);
var imageB = docPath + "/" + imageStub + "b" + ext;
var imageC = docPath + "/" + imageStub + "c" + ext;
// load image B % copy it
openThisFile(imageB);
activeDocument.selection.selectAll();
activeDocument.selection.copy();
activeDocument.selection.deselect();
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
// return to image A
app.activeDocument = srcDoc;
// paste it
activeDocument.paste();
translateLayer(imageW, 0);
// do the same for C
// load image C % copy it
openThisFile(imageC);
activeDocument.selection.selectAll();
activeDocument.selection.copy();
activeDocument.selection.deselect();
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
// return to image A
app.activeDocument = srcDoc;
// paste it
activeDocument.paste();
translateLayer(imageW *2, 0);
// resize canvas
srcDoc.resizeCanvas(imageW *3, imageH, AnchorPosition.MIDDLELEFT);
// flatten it
srcDoc.flatten();
// save it out
var tempName = imageStub + "abc";
saveMe(docPath, tempName, 12);
// close the new doc
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
function getImageName (astring)
{
// Image_SD_1a.jpg
astring += "";
//re move extension -1
var temp = astring.substring(0, astring.lastIndexOf("."));
return temp.substring(0, temp.length-1);
}
function getFileExtension (astring)
{
astring += "";
var x = astring.substring(astring.lastIndexOf("."), astring.length-1);
//alert(x);
return x;
}
// function OPENTHISFILE (masterFileNameAndPath)
// --------------------------------------------------------
function openThisFile(masterFileNameAndPath)
{
var fileRef = new File(masterFileNameAndPath)
if (fileRef.exists)
//open that doc
{
app.open(fileRef);
}
else
{
alert("error opening " + masterFileNameAndPath)
}
}
function saveMe(fPath, fname, myJpgQuality)
{
//vegetables
if (!myJpgQuality) myJpgQuality = 12;
// Set filePath and fileName to source path
filePath = fPath + "/" + fname + ".jpg";
var jpgFile = new File(filePath);
jpgSaveOptions = new JPEGSaveOptions();
jpgSaveOptions.formatOptions = FormatOptions.OPTIMIZEDBASELINE;
jpgSaveOptions.embedColorProfile = true;
jpgSaveOptions.matte = MatteType.NONE;
jpgSaveOptions.quality = myJpgQuality;
activeDocument.saveAs(jpgFile, jpgSaveOptions, true, Extension.LOWERCASE);
}
function translateLayer(dx,dy)
{
// =======================================================
var id2014 = charIDToTypeID( "Trnf" );
var desc416 = new ActionDescriptor();
var id2015 = charIDToTypeID( "null" );
var ref287 = new ActionReference();
var id2016 = charIDToTypeID( "Lyr " );
var id2017 = charIDToTypeID( "Ordn" );
var id2018 = charIDToTypeID( "Trgt" );
ref287.putEnumerated( id2016, id2017, id2018 );
desc416.putReference( id2015, ref287 );
var id2019 = charIDToTypeID( "FTcs" );
var id2020 = charIDToTypeID( "QCSt" );
var id2021 = charIDToTypeID( "Qcsa" );
desc416.putEnumerated( id2019, id2020, id2021 );
var id2022 = charIDToTypeID( "Ofst" );
var desc417 = new ActionDescriptor();
var id2023 = charIDToTypeID( "Hrzn" );
var id2024 = charIDToTypeID( "#Pxl" );
desc417.putUnitDouble( id2023, id2024, dx );
var id2025 = charIDToTypeID( "Vrtc" );
var id2026 = charIDToTypeID( "#Pxl" );
desc417.putUnitDouble( id2025, id2026, dy );
var id2027 = charIDToTypeID( "Ofst" );
desc416.putObject( id2022, id2027, desc417 );
executeAction( id2014, desc416, DialogModes.NO );
}