<html>
<head>
<base href="http://fiji.sc/bugzilla/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_RESOLVED bz_closed"
title="RESOLVED WONTFIX - "images to stack" does not work"
href="http://fiji.sc/bugzilla/show_bug.cgi?id=1000#c15">Comment # 15</a>
on <a class="bz_bug_link
bz_status_RESOLVED bz_closed"
title="RESOLVED WONTFIX - "images to stack" does not work"
href="http://fiji.sc/bugzilla/show_bug.cgi?id=1000">bug 1000</a>
from <span class="vcard"><a class="email" href="mailto:wsr@nih.gov" title="Wayne Rasband <wsr@nih.gov>"> <span class="fn">Wayne Rasband</span></a>
</span></b>
<pre>Run the following macro before using the Concatenate command. It zero pads all
open images so that they have the same dimensions.
maxWidth = 0;
maxHeight = 0;
for (i=1; i<=nImages; i++) {
selectImage(i);
if (getWidth>maxWidth) maxWidth=getWidth;
if (getHeight>maxHeight) maxHeight=getHeight;
}
for (i=1; i<=nImages; i++) {
selectImage(i);
if (getWidth!=maxWidth || getHeight!=maxHeight)
run("Canvas Size...", "width=&maxWidth height=&maxHeight
position=Center zero");
}</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>