Skip to content

Instantly share code, notes, and snippets.

@350d
Created March 4, 2013 21:27
Show Gist options
  • Save 350d/5085825 to your computer and use it in GitHub Desktop.
Save 350d/5085825 to your computer and use it in GitHub Desktop.
Photoshop Square Crop
var savedRuler= app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS;
var w = app.activeDocument.width;
var h = app.activeDocument.height;
if(w>h) app.activeDocument.resizeCanvas (w, w, AnchorPosition.MIDDLECENTER);
if(w<h) app.activeDocument.resizeCanvas (h, h, AnchorPosition.MIDDLECENTER);
app.preferences.rulerUnits = savedRuler;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment