You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The size of a sample is stored in bitsPerSample, which allows sub-byte values (i.e. values not divisible by 8). As a result, sample data could span byte boundaries.
Since many images use this method (it allows for smaller files), we need to support this. However, it will require fancy handling, because DataView only allows reading a minimum of one byte at a time.
The text was updated successfully, but these errors were encountered:
The size of a sample is stored in bitsPerSample, which allows sub-byte values (i.e. values not divisible by 8). As a result, sample data could span byte boundaries.
Since many images use this method (it allows for smaller files), we need to support this. However, it will require fancy handling, because DataView only allows reading a minimum of one byte at a time.
The text was updated successfully, but these errors were encountered: