Created
March 17, 2014 10:33
-
-
Save mutterer/9597107 to your computer and use it in GitHub Desktop.
creates a stack, duplicating the source image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// creates a stack, duplicating the source image | |
// after an idea by Mathieu Fallet | |
x=getNumber("no of Slices", 10); | |
run("Select All"); | |
run("Copy"); | |
for(i=1;i<x;i++){ | |
run("Add Slice"); | |
run("Paste"); | |
} | |
run("Select None"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment