GPHemsley / tiff-js

A JavaScript-based parser for the TIFF image format.
Mozilla Public License 2.0
71 stars 30 forks source link

Process strip data asynchronously #1

Open GPHemsley opened 11 years ago

GPHemsley commented 11 years ago

Strips are currently processed concurrently, which means large strips and large numbers of strips will delay the loading process.

Since we know the locations of all the strips before we start processing them, we should be able to process each strip independently of the others, resulting in faster load times.