-
Notifications
You must be signed in to change notification settings - Fork 11
/
ExportActiveLayerAsPNG.jsx
90 lines (63 loc) · 3.2 KB
/
ExportActiveLayerAsPNG.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/***********************************************************************
PHOTOSHOP - LAYER EXPORT TOOL FOR NORMAL IPHONE GRAPHICS AND RETINA DISPLAY GRAPHICS.
This script assumes you are working with high resolution graphics for the iPhone Retina display eg 960 x 640
Select the layer you want to export in the layers list in Photoshop.
1. Click this script (you might have to right click and choose Open With Photoshop, you can make this the default action in Finder by getting file info)
2. The script will ask you for the name that you want to save this layer as (without file extension, eg background)
3. The layer is trimmed of any transparent pixels, saved as [email protected] and name.png in the same folder as oringal PSD document.
Hope you like this script, hit John Ballinger up on Twitter @sponno on from his website www.bluespark.co.nz
Please keep this Attribution here if you are going to redistrubte this code. Thanks
Creative Commons Attribution 3.0 New Zealand License
http://creativecommons.org/licenses/by/3.0/nz/
************************************************************************/
//set unit preferences
var strtRulerUnits = app.preferences.rulerUnits;
var strtTypeUnits = app.preferences.typeUnits;
app.preferences.rulerUnits = Units.PIXELS;
app.preferences.typeUnits = TypeUnits.PIXELS;
/////////////////////////////////////////////////////////////////////////////////////////////
//create a new slideshow package
function doResizeAndOutput()
{
var orginalDoc = app.activeDocument;
var duppedDocument = app.activeDocument.duplicate();
// Double check we are in RGB Mode.
duppedDocument.changeMode(ChangeMode.RGB);
// Turn all layers off.
setInvisibleAllArtLayers(duppedDocument);
// Turn our layer on.
duppedDocument.activeLayer.visible = true;
// Trim
app.activeDocument.trim(TrimType.TRANSPARENT, true, true, true, true);
// Get the new file name.
var fileName = prompt("File Name, No extension, eg background", "");
if(fileName==null) return; // You clicked cancle.
// Image save options for PNG
var pngOptions = new PNGSaveOptions();
pngOptions.interlaced = false;
// Full Size - iPhone Retina Display Size and File Name.
activeDocument.saveAs(File(orginalDoc.path + "/" + fileName + "@2x.png"), pngOptions, true);
// Half Size wich is actually normal size.
activeDocument.resizeImage(null,(app.activeDocument.height/2),(app.activeDocument.width/2),ResampleMethod.BICUBIC);
activeDocument.saveAs(File(orginalDoc.path + "/" + fileName + ".png"), pngOptions, true);
// Close file
activeDocument.close(SaveOptions.DONOTSAVECHANGES);
}
// Turns all layers off.
function setInvisibleAllArtLayers(obj) {
for( var i = 0; i < obj.artLayers.length; i++) {
obj.artLayers[i].allLocked = false;
obj.artLayers[i].visible = false;
}
for( var i = 0; i < obj.layerSets.length; i++) {
setInvisibleAllArtLayers(obj.layerSets[i]);
}
}
// Helper function
function dumpProperties(ojb){
var d = "";
for( var i in ojb) d+= i + "\n";
alert(d);
}
//create the slideshow source files
doResizeAndOutput();