Hi Christof!
O.k., this can be solved with PixelMath.
You create a new image with PixelMath in the size you wish all images.
For example size 4000x3000 and Name it "b"
![](https://dl.dropboxusercontent.com/u/57910417/W01.jpg)
Than you create this PixelMath Expression
![](https://dl.dropboxusercontent.com/u/57910417/W011.jpg)
And pull the Image Container in the bottom line of the PixelMath Expression.
Thats it.
You will get all images in the size 4000x3000 and the data images aligned to left top
and will get a black border to right and bottom
if you want to change the size of the result you have to change the image width and height in the first and
second PixelMath Expression.
Hope this helps
"b" stands for black but can be any Name...
Gerald
P.S. EDIT
Just found out it would be more save to use in the second PixelMathExpression this extendend expression.
iif((y()<(h($T)+1)||x()<(w($T)+1)),pixel($T,x(),y()),pixel(b,x(),y()))
instead of
iif(y()<(h($T)+1),pixel($T,x(),y()),pixel(b,x(),y()))