在 Adob​​e Photoshop 中使用 JavaScript 脚本,如何将某些图层保存为相同大小?

发布于 2024-09-05 12:19:26 字数 79 浏览 2 评论 0原文

我有保存一些图层的脚本。 但它保存为原始图层大小。

我想将图层保存为相同的定制尺寸。

你知道或者有这样的脚本吗?

I have script to save some layers.
But it's save as original layer size.

I want to save layers as same costom size.

Do you know or have a script like this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你是年少的欢喜 2024-09-12 12:19:28

这是我前段时间写的一些代码:

varfolder = newFolder(SOME_PATH);
var 文件=folder.getFiles();

for (var i = 0; i < files.length; i++)
{
app.load(files[i]);
var docRef = app.activeDocument;
resize(docRef);

var options = new ExportOptionsSaveForWeb();
var a = files[i].name.split('.');
var filename = a[0] + '.' + ( a[1].toLowerCase() != 'jpg' ? a[1] + '.' : '' ) + 'jpg';
var JPEGFile = new File( SOME_PATH + filename );

options.quality = 70;
options.format = SaveDocumentType.JPEG; //I Suppose you might want to save to some other format though
docRef.exportDocument(JPEGFile, ExportType.SAVEFORWEB, options);
docRef.close(SaveOptions.DONOTSAVECHANGES);

}

function resize(doc)
{
var TARGET = SOME_TARGET;   

var dist = Math.max(doc.width.as('px'), doc.height.as('px'));

if(dist > 0)
{
    var ratio = (TARGET / dist);
    var newWidth = new UnitValue(doc.width.as('px') * ratio, 'px')
    var newHeight = new UnitValue(doc.height.as('px') * ratio, 'px')
    doc.resizeImage(newWidth, newHeight);   
    //alert('width:' + doc.width * ratio + ' height:' + doc.height * ratio);
}

}

Here is some code that I wrote some time ago:

var folder = new Folder(SOME_PATH);
var files = folder.getFiles();

for (var i = 0; i < files.length; i++)
{
app.load(files[i]);
var docRef = app.activeDocument;
resize(docRef);

var options = new ExportOptionsSaveForWeb();
var a = files[i].name.split('.');
var filename = a[0] + '.' + ( a[1].toLowerCase() != 'jpg' ? a[1] + '.' : '' ) + 'jpg';
var JPEGFile = new File( SOME_PATH + filename );

options.quality = 70;
options.format = SaveDocumentType.JPEG; //I Suppose you might want to save to some other format though
docRef.exportDocument(JPEGFile, ExportType.SAVEFORWEB, options);
docRef.close(SaveOptions.DONOTSAVECHANGES);

}

function resize(doc)
{
var TARGET = SOME_TARGET;   

var dist = Math.max(doc.width.as('px'), doc.height.as('px'));

if(dist > 0)
{
    var ratio = (TARGET / dist);
    var newWidth = new UnitValue(doc.width.as('px') * ratio, 'px')
    var newHeight = new UnitValue(doc.height.as('px') * ratio, 'px')
    doc.resizeImage(newWidth, newHeight);   
    //alert('width:' + doc.width * ratio + ' height:' + doc.height * ratio);
}

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文