gpt4 book ai didi

image-processing - 在文件夹 Photoshop 脚本中合并文件(并排)

转载 作者:行者123 更新时间:2023-12-04 08:29:03 27 4
gpt4 key购买 nike

我需要做以下事情。在具有命名约定的文件夹中有多个 png 文件:
1.png 1_m.png、2.png 2_m.png(等等)。
png 文件具有相同的宽度和高度(320 x 360 像素)。

现在脚本应该执行以下操作:

获取文件 1.png 1_m.png 并创建一个新文件,其中 1_m.png 位于左侧,1.png 位于右侧,将这两个文件合并在一层并将其保存为 1_done.png,
对文件夹中的所有文件运行此操作。

这不一定是我在网上搜索过但找不到任何有用的解决方案的 Photoshop 脚本。这里也没有什么是一成不变的,文件可以在不同的文件夹中,这是最简单的解决方案。
我的 Photoshop 版本是 CS5

最佳答案

这个脚本会做你想做的。将所有文件放在一个目录中,然后使用自动批处理 -> 脚本运行脚本。它会在文件名中找到一个没有下划线的图像,然后打开它的配对名称文件(带有“_m”),将它们并排放置并保存它并在文件名中添加_done。

//首选像素
app.preferences.rulerUnits = Units.PIXELS;

var srcDoc = app.activeDocument;

// call the current document
var srcDoc = app.activeDocument;

// set original width and height
var imageW = srcDoc.width.value;
var imageH = srcDoc.height.value;

// get the info out of the source doc
var fileName = srcDoc.name;
var docName = fileName.substring(0,fileName.length -4);
var filePath = srcDoc.path.toString();
var fileExt = fileName.substring(fileName.length -4, fileName.length);

var nameCheck = fileName.substring(0,fileName.indexOf("_"));

if (nameCheck <1)
{
// no underscore so we need to open it's namesake
// alert(nameCheck)
var filePair = filePath + "/" + docName + "_m" + fileExt;
openThisFile(filePair)
activeDocument.selection.selectAll()
activeDocument.selection.copy();
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
app.activeDocument = srcDoc;
activeDocument.resizeCanvas(imageW *2, imageH, AnchorPosition.MIDDLELEFT);
selectRect(0, imageW, imageW*2, imageH)
activeDocument.paste()
activeDocument.flatten();
var newName = filePath + "/" + docName + "_done" + fileExt
saveMe(newName)
}
else
{
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
}


function openThisFile(masterFileNameAndPath)
{
var fileRef = new File(masterFileNameAndPath)
if (fileRef.exists)
//open that doc
{
app.open(fileRef);
}
else
{
alert("error opening " + masterFileNameAndPath)
}
}


function selectRect(top, left, right, bottom)
{
srcDoc.selection.deselect()
// =======================================================
var id1 = charIDToTypeID( "setd" );
var desc1 = new ActionDescriptor();
var id2 = charIDToTypeID( "null" );
var ref1 = new ActionReference();
var id3 = charIDToTypeID( "Chnl" );
var id4 = charIDToTypeID( "fsel" );
ref1.putProperty( id3, id4 );
desc1.putReference( id2, ref1 );
var id5 = charIDToTypeID( "T " );
var desc2 = new ActionDescriptor();
var id6 = charIDToTypeID( "Top " );
var id7 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id6, id7, top );
var id8 = charIDToTypeID( "Left" );
var id9 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id8, id9, left );
var id10 = charIDToTypeID( "Btom" );
var id11 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id10, id11, bottom );
var id12 = charIDToTypeID( "Rght" );
var id13 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id12, id13, right );
var id16 = charIDToTypeID( "Rctn" );
desc1.putObject( id5, id16, desc2 );
executeAction( id1, desc1, DialogModes.NO );
}

function saveMe(fPath)
{

// save out the image
var pngFile = new File(fPath);
pngSaveOptions = new PNGSaveOptions();
pngSaveOptions.embedColorProfile = true;
pngSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
pngSaveOptions.matte = MatteType.NONE; pngSaveOptions.quality = 1;
activeDocument.saveAs(pngFile, pngSaveOptions, false, Extension.LOWERCASE);

// close that saved png
app.activeDocument.close()
}

关于image-processing - 在文件夹 Photoshop 脚本中合并文件(并排),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13530943/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com