(OutputStream out, Object[] stack)
| 242 | } |
| 243 | |
| 244 | void writeRGBStack(OutputStream out, Object[] stack) throws IOException { |
| 245 | showProgressBar = false; |
| 246 | for (int i=0; i<fi.nImages; i++) { |
| 247 | IJ.showStatus("Writing: " + (i+1) + "/" + fi.nImages); |
| 248 | writeRGBImage(out, (int[])stack[i]); |
| 249 | IJ.showProgress((double)(i+1)/fi.nImages); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | void writeRGBVirtualStack(OutputStream out, VirtualStack virtualStack) throws IOException { |
| 254 | showProgressBar = false; |
no test coverage detected