webtoon / psd

Fast zero-dependency PSD parser for the web and Node.js

Home Page:https://webtoon.github.io/psd

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Investigate if we need to implement ZIP compression support

pastelmind opened this issue · comments

Adobe's PSD file format document claims that there are four compression methods for image channels: uncompressed (0), RLE (1), ZIP (2), ZIP with prediction (3). However, I have yet to find a PSD file that uses compression methods 2 and 3. If they do exist, we may have to support them as well.

What to do

  • Attempt to find or obtain a PSD file that uses compression methods 2 and 3
  • Find other PSD parsers that support methods 2 or 3
  • Decide if we want to implement ZIP compression support

Prior art