UNPKG
geotiff.js
Version:
latest (1.0.1)
1.0.1
GeoTIFF image decoding in JavaScript
github.com/geotiffjs/geotiff.js
geotiffjs/geotiff.js
geotiff.js
/
src
/
compression
/
raw.js
9 lines
(6 loc)
•
146 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
BaseDecoder
from
'./basedecoder'
;
export
default
class
RawDecoder
extends
BaseDecoder
{
decodeBlock
(
buffer
) {
return
buffer; } }