Adobe Photoshop CS2的图像大小调整器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Adobe Photoshop CS2的图像大小调整器相关的知识,希望对你有一定的参考价值。

  1. /*
  2. resizer.jsx for Adobe Photoshop CS2
  3.  
  4. WARNING: this script changes documents that will be processed.
  5.   so be sure to duplicate documents before script runs.
  6.  
  7. this script resizes images storing in given number of pixel.
  8. smaller images than given number won't be resized.
  9. all images will be changed into RGB color mode.
  10.  
  11. last update: 2006-10-26
  12. */
  13.  
  14. preferences.rulerUnits = Units.PIXELS;
  15.  
  16. cutVal = 960;
  17. fileType = "*.psd";
  18.  
  19. folderObj = Folder.selectDialog("select folder");
  20.  
  21. if(folderObj != null) {
  22. inputFileType = prompt("input file type like '*.psd'", fileType);
  23. if(inputFileType != null) { fileType = inputFileType; }
  24.  
  25. inputCutVal = prompt("input length (pixel)", cutVal);
  26. if(inputCutVal != null) { cutVal = eval(inputCutVal); }
  27.  
  28. fileList = folderObj.getFiles(fileType);
  29.  
  30. for(i = 0; i < fileList.length; i++) {
  31. open(fileList[i]);
  32.  
  33. if(activeDocument.width.value > cutVal || activeDocument.height.value > cutVal) {
  34. if(activeDocument.width.value > activeDocument.height.value) {
  35. activeDocument.resizeImage(
  36. cutVal,
  37. (cutVal / activeDocument.width.value) * activeDocument.height.value,
  38. 72,
  39. ResampleMethod.BICUBICSHARPER
  40. );
  41. } else {
  42. activeDocument.resizeImage(
  43. (cutVal / activeDocument.height.value) * activeDocument.width.value,
  44. cutVal,
  45. 72,
  46. ResampleMethod.BICUBICSHARPER
  47. );
  48. }
  49. }
  50.  
  51. activeDocument.changeMode(ChangeMode.RGB);
  52.  
  53. activeDocument.close(SaveOptions.SAVECHANGES);
  54. }
  55. }

以上是关于Adobe Photoshop CS2的图像大小调整器的主要内容,如果未能解决你的问题,请参考以下文章

Photoshop CS2软件下载与安装教程

如何完美免费安装Photoshop CS6

Adobe Photoshop CC 2018绿色免激版

Adobe Photoshop Lightroom v5.4 MacOSX 专业摄影师图像处理软件

Adobe Photoshop 常用快捷键及下载

关于单反相机的RAW和photoshop编辑srgb 和adobe rgb