Reads Logical Screen Descriptor
()
| 625 | * Reads Logical Screen Descriptor |
| 626 | */ |
| 627 | protected void readLSD() { |
| 628 | // logical screen size |
| 629 | width = readShort(); |
| 630 | height = readShort(); |
| 631 | // packed fields |
| 632 | int packed = read(); |
| 633 | gctFlag = (packed & 0x80) != 0; // 1 : global color table flag |
| 634 | // 2-4 : color resolution |
| 635 | // 5 : gct sort flag |
| 636 | gctSize = 2 << (packed & 7); // 6-8 : gct size |
| 637 | bgIndex = read(); // background color index |
| 638 | pixelAspect = read(); // pixel aspect ratio |
| 639 | } |
| 640 | |
| 641 | /** |
| 642 | * Reads Netscape extenstion to obtain iteration count |
no test coverage detected