()
| 199 | } |
| 200 | |
| 201 | public String toString() { |
| 202 | return |
| 203 | "name=" + fileName |
| 204 | + ", dir=" + directory |
| 205 | + ", width=" + width |
| 206 | + ", height=" + height |
| 207 | + ", nImages=" + nImages |
| 208 | + ", offset=" + getOffset() |
| 209 | + ", gap=" + getGap() |
| 210 | + ", type=" + getType() |
| 211 | + ", byteOrder=" + (intelByteOrder?"little":"big") |
| 212 | + ", format=" + fileFormat |
| 213 | + ", url=" + url |
| 214 | + ", whiteIsZero=" + (whiteIsZero?"t":"f") |
| 215 | + ", lutSize=" + lutSize |
| 216 | + ", comp=" + compression |
| 217 | + ", ranges=" + (displayRanges!=null?""+displayRanges.length/2:"null") |
| 218 | + ", samples=" + samplesPerPixel; |
| 219 | } |
| 220 | |
| 221 | /** Returns JavaScript code that can be used to recreate this FileInfo. */ |
| 222 | public String getCode() { |
no test coverage detected