Saves the current image, lookup table, selection or text window to the specified file path. The path must end in ".tif", ".jpg", ".gif", ".zip", ".raw", ".avi", ".bmp", ".fits", ".pgm", ".png", ".lut", ".roi" or ".txt".
(String path)
| 2150 | /** Saves the current image, lookup table, selection or text window to the specified file path. |
| 2151 | The path must end in ".tif", ".jpg", ".gif", ".zip", ".raw", ".avi", ".bmp", ".fits", ".pgm", ".png", ".lut", ".roi" or ".txt". */ |
| 2152 | public static void save(String path) { |
| 2153 | save(null, path); |
| 2154 | } |
| 2155 | |
| 2156 | /** Saves the specified image, lookup table or selection to the specified file path. |
| 2157 | The file path should end with ".tif", ".jpg", ".gif", ".zip", ".raw", ".avi", ".bmp", |
no test coverage detected