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

Method readHeader

ij/src/main/java/ij/plugin/GIF_Reader.java:512–526  ·  view source on GitHub ↗

Reads GIF file header information.

()

Source from the content-addressed store, hash-verified

510 * Reads GIF file header information.
511 */
512 private void readHeader() {
513 String id = "";
514 for (int i = 0; i < 6; i++)
515 id += (char) read();
516 if (!id.startsWith("GIF")) {
517 status = STATUS_FORMAT_ERROR;
518 return;
519 }
520
521 readLSD();
522 if (gctFlag && !err()) {
523 gct = readColorTable(gctSize);
524 bgColor = gct[bgIndex];
525 }
526 }
527
528
529 /**

Callers 1

readMethod · 0.95

Calls 5

readMethod · 0.95
readLSDMethod · 0.95
errMethod · 0.95
readColorTableMethod · 0.95
startsWithMethod · 0.80

Tested by

no test coverage detected