Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/AstroImageJ/astroimagej
/ readShort
Method
readShort
ij/src/main/java/ij/plugin/GIF_Reader.java:627–630 ·
view source on GitHub ↗
Reads next 16-bit value, LSB first
()
Source
from the content-addressed store, hash-verified
625
* Reads next 16-bit value, LSB first
626
*/
627
private
int
readShort() {
628
// read 16-bit value, LSB first
629
return
read() | (read() << 8);
630
}
631
632
633
/**
Callers
3
readGraphicControlExt
Method · 0.95
readImage
Method · 0.95
readLSD
Method · 0.95
Calls
1
read
Method · 0.95
Tested by
no test coverage detected