Reads GIF file header information.
()
| 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 | /** |
no test coverage detected