MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / saveAsText

Method saveAsText

ij/src/main/java/ij/io/FileSaver.java:578–583  ·  view source on GitHub ↗

Save the image as comma or tab-delimited text using a save file dialog. Returns false if the user selects cancel.

()

Source from the content-addressed store, hash-verified

576 /** Save the image as comma or tab-delimited text using a save
577 file dialog. Returns false if the user selects cancel. */
578 public boolean saveAsText() {
579 String path = getPath("Text", ".csv");
580 if (path==null)
581 return false;
582 return saveAsText(path);
583 }
584
585 /** Save the image as tab-delimited text using the specified path. */
586 public boolean saveAsText(String path) {

Callers 1

runMethod · 0.45

Calls 9

getPathMethod · 0.95
getPrecisionMethod · 0.95
getMeasurementsMethod · 0.95
setDelimiterMethod · 0.95
writeMethod · 0.95
showErrorMessageMethod · 0.95
getCalibrationMethod · 0.80
closeMethod · 0.65
getProcessorMethod · 0.45

Tested by

no test coverage detected