Todas as respostas agradáveis, obrigado pela contribuição.
Como eu disse, gostaria de saber se havia algo para o Photoshop.
Para fins de documentação, aqui está um pequeno script que escrevi:
var doc = app.activeDocument;
var arranger = makeDialog();
arranger .arrange.onClick = function(){
if(isNaN(parseInt(arranger.w.text)) || isNaN(parseInt(arranger.h.text)) || isNaN(parseInt(arranger.c.text)) || isNaN(parseInt(arranger.r.text))){
alert('Yo! Can you feed \' dis dialog some integer numbers ?\n For Real!');
}else{
sliceLayer(parseInt(arranger.w.text),parseInt(arranger.h.text),parseInt(arranger.r.text),parseInt(arranger.c.text));
}
arranger.close();
}
arranger.show();
function sliceLayer(w,h,r,c){
var hw = w * 0.5;
var hh = h * 0.5;
var l0 = doc.activeLayer;
for(var j = 0 ; j < r ; j++){
for(var i = 0 ; i < c; i++){
var x = i * w; //edited
var y = j * h; //here
//select
doc.selection.select([[x,y],[x+w,y],[x+w,y+h],[x,y+h]]);
//new layer via cut
doc.selection.cut();
var layer = doc.artLayers.add();
doc.paste();
//move
//$.writeln('translate x: '+(y)+', y: '+(x));
layer.translate(y,x);
doc.activeLayer = l0;
}
}
l0.remove();//remove original layer(now empty)
}
function makeDialog(){
var dialog = new Window('dialog','Slice and Dice');
dialog.frameLocation = [300,300];
dialog.w = dialog.add('edittext',undefined,'Selection width');
dialog.w.prefferedSize = [200,50];
dialog.h = dialog.add('edittext',undefined,'Selection height');
dialog.h.prefferedSize = [200,50];
dialog.c = dialog.add('edittext',undefined,'Grid Columns(V sections)');
dialog.c.prefferedSize = [200,50];
dialog.r = dialog.add('edittext',undefined,'Grid Rows(H sections)');
dialog.r.prefferedSize = [200,50];
dialog.arrange = dialog.add('button',undefined,'Chop Chop');
return dialog;
}
Se você salvar isso no Photoshop / Presets / Scripts, poderá acessá-lo através de Scripts no menu Arquivo.
O problema com a abordagem JSX é, é um pouco lento para grandes subdivisões (100x100).
Eu estou supondo que será mais rápido tentar com a comunicação do MATLAB / Photoshop, mas vou pular isso por enquanto.
Atingiu o mesmo objetivo no actionscript 3 usando copyPixels () e é muito rápido.