├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── book ├── .gitignore ├── book.toml └── src │ ├── SUMMARY.md │ ├── contributing │ ├── README.md │ └── internal-design │ │ ├── README.md │ │ └── major-sections │ │ └── README.md │ ├── controlling-exported-layers │ └── README.nd │ ├── introduction.md │ ├── layer-groups │ └── README.md │ └── user-guide │ └── README.md ├── examples ├── README.md └── drag-drop-browser │ ├── Cargo.toml │ ├── README.md │ ├── build-dev.sh │ ├── build-release.sh │ ├── demo-screenshot.png │ ├── demo.psd │ ├── index.html │ └── src │ └── lib.rs ├── src ├── blend.rs ├── lib.rs ├── psd_channel.rs ├── render.rs └── sections │ ├── file_header_section.rs │ ├── image_data_section.rs │ ├── image_resources_section.rs │ ├── image_resources_section │ └── image_resource.rs │ ├── layer_and_mask_information_section │ ├── groups.rs │ ├── layer.rs │ ├── layers.rs │ └── mod.rs │ └── mod.rs └── tests ├── README.md ├── blend.rs ├── channels.rs ├── compression.rs ├── file_header_section.rs ├── fixtures ├── 16x16-rle-partially-opaque.psd ├── 3x3-opaque-center.psd ├── README.md ├── blending │ ├── blue-red-1x1-color-burn.psd │ ├── blue-red-1x1-color-dodge.psd │ ├── blue-red-1x1-darken.psd │ ├── blue-red-1x1-difference.psd │ ├── blue-red-1x1-divide.psd │ ├── blue-red-1x1-exclusion.psd │ ├── blue-red-1x1-hard-light.psd │ ├── blue-red-1x1-lighten.psd │ ├── blue-red-1x1-linear-burn.psd │ ├── blue-red-1x1-linear-dodge.psd │ ├── blue-red-1x1-multiply.psd │ ├── blue-red-1x1-normal.psd │ ├── blue-red-1x1-overlay.psd │ ├── blue-red-1x1-screen.psd │ ├── blue-red-1x1-soft-light.psd │ └── blue-red-1x1-subtract.psd ├── fifteen-letters.psd ├── green-1x1.png ├── green-1x1.psd ├── green-chinese-layer-name-1x1.psd ├── green-clipping-10x10.psd ├── green-cyrillic-layer-name-1x1.psd ├── groups │ ├── green-1x1-one-group-inside-another.psd │ ├── green-1x1-one-group-one-layer-inside-one-outside.psd │ ├── green-1x1-one-group-one-layer-inside.psd │ ├── green-1x1-one-group-with-two-subgroups.psd │ ├── green-1x1-two-groups-two-layers-inside.psd │ └── rle-compressed-empty-channel.psd ├── layer-larger.psd ├── luni.psd ├── negative-top-left-layer.psd ├── non-utf8-pascal-string.psd ├── odd-length-pascal-string.psd ├── one-channel-1x1.psd ├── out-of-bounds-layer.psd ├── rle-3-layer-8x8.psd ├── slices-resource │ ├── 1.psd │ ├── 12.psd │ ├── 123.psd │ ├── 1234.psd │ └── README.md ├── slices-v8.psd ├── transparent-above-opaque.psd ├── transparent-top-layer-2x1.psd ├── two-channel-8x8.psd ├── two-layers-red-green-1x1.psd └── visibility.psd ├── flatten_layers.rs ├── image_data_section.rs ├── image_resources_section.rs ├── layer_and_mask_information_section.rs ├── layer_groups.rs ├── slices_resource.rs ├── transparency.rs └── visibility.rs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | .idea 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/README.md -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/contributing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/contributing/README.md -------------------------------------------------------------------------------- /book/src/contributing/internal-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/contributing/internal-design/README.md -------------------------------------------------------------------------------- /book/src/contributing/internal-design/major-sections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/contributing/internal-design/major-sections/README.md -------------------------------------------------------------------------------- /book/src/controlling-exported-layers/README.nd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/controlling-exported-layers/README.nd -------------------------------------------------------------------------------- /book/src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/introduction.md -------------------------------------------------------------------------------- /book/src/layer-groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/layer-groups/README.md -------------------------------------------------------------------------------- /book/src/user-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/book/src/user-guide/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/drag-drop-browser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/Cargo.toml -------------------------------------------------------------------------------- /examples/drag-drop-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/README.md -------------------------------------------------------------------------------- /examples/drag-drop-browser/build-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/build-dev.sh -------------------------------------------------------------------------------- /examples/drag-drop-browser/build-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/build-release.sh -------------------------------------------------------------------------------- /examples/drag-drop-browser/demo-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/demo-screenshot.png -------------------------------------------------------------------------------- /examples/drag-drop-browser/demo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/demo.psd -------------------------------------------------------------------------------- /examples/drag-drop-browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/index.html -------------------------------------------------------------------------------- /examples/drag-drop-browser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/examples/drag-drop-browser/src/lib.rs -------------------------------------------------------------------------------- /src/blend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/blend.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/psd_channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/psd_channel.rs -------------------------------------------------------------------------------- /src/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/render.rs -------------------------------------------------------------------------------- /src/sections/file_header_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/file_header_section.rs -------------------------------------------------------------------------------- /src/sections/image_data_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/image_data_section.rs -------------------------------------------------------------------------------- /src/sections/image_resources_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/image_resources_section.rs -------------------------------------------------------------------------------- /src/sections/image_resources_section/image_resource.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/image_resources_section/image_resource.rs -------------------------------------------------------------------------------- /src/sections/layer_and_mask_information_section/groups.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/layer_and_mask_information_section/groups.rs -------------------------------------------------------------------------------- /src/sections/layer_and_mask_information_section/layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/layer_and_mask_information_section/layer.rs -------------------------------------------------------------------------------- /src/sections/layer_and_mask_information_section/layers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/layer_and_mask_information_section/layers.rs -------------------------------------------------------------------------------- /src/sections/layer_and_mask_information_section/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/layer_and_mask_information_section/mod.rs -------------------------------------------------------------------------------- /src/sections/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/src/sections/mod.rs -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/blend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/blend.rs -------------------------------------------------------------------------------- /tests/channels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/channels.rs -------------------------------------------------------------------------------- /tests/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/compression.rs -------------------------------------------------------------------------------- /tests/file_header_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/file_header_section.rs -------------------------------------------------------------------------------- /tests/fixtures/16x16-rle-partially-opaque.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/16x16-rle-partially-opaque.psd -------------------------------------------------------------------------------- /tests/fixtures/3x3-opaque-center.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/3x3-opaque-center.psd -------------------------------------------------------------------------------- /tests/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/README.md -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-color-burn.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-color-burn.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-color-dodge.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-color-dodge.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-darken.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-darken.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-difference.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-difference.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-divide.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-divide.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-exclusion.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-exclusion.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-hard-light.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-hard-light.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-lighten.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-lighten.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-linear-burn.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-linear-burn.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-linear-dodge.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-linear-dodge.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-multiply.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-multiply.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-normal.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-normal.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-overlay.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-overlay.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-screen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-screen.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-soft-light.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-soft-light.psd -------------------------------------------------------------------------------- /tests/fixtures/blending/blue-red-1x1-subtract.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/blending/blue-red-1x1-subtract.psd -------------------------------------------------------------------------------- /tests/fixtures/fifteen-letters.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/fifteen-letters.psd -------------------------------------------------------------------------------- /tests/fixtures/green-1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/green-1x1.png -------------------------------------------------------------------------------- /tests/fixtures/green-1x1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/green-1x1.psd -------------------------------------------------------------------------------- /tests/fixtures/green-chinese-layer-name-1x1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/green-chinese-layer-name-1x1.psd -------------------------------------------------------------------------------- /tests/fixtures/green-clipping-10x10.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/green-clipping-10x10.psd -------------------------------------------------------------------------------- /tests/fixtures/green-cyrillic-layer-name-1x1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/green-cyrillic-layer-name-1x1.psd -------------------------------------------------------------------------------- /tests/fixtures/groups/green-1x1-one-group-inside-another.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/groups/green-1x1-one-group-inside-another.psd -------------------------------------------------------------------------------- /tests/fixtures/groups/green-1x1-one-group-one-layer-inside-one-outside.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/groups/green-1x1-one-group-one-layer-inside-one-outside.psd -------------------------------------------------------------------------------- /tests/fixtures/groups/green-1x1-one-group-one-layer-inside.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/groups/green-1x1-one-group-one-layer-inside.psd -------------------------------------------------------------------------------- /tests/fixtures/groups/green-1x1-one-group-with-two-subgroups.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/groups/green-1x1-one-group-with-two-subgroups.psd -------------------------------------------------------------------------------- /tests/fixtures/groups/green-1x1-two-groups-two-layers-inside.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/groups/green-1x1-two-groups-two-layers-inside.psd -------------------------------------------------------------------------------- /tests/fixtures/groups/rle-compressed-empty-channel.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/groups/rle-compressed-empty-channel.psd -------------------------------------------------------------------------------- /tests/fixtures/layer-larger.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/layer-larger.psd -------------------------------------------------------------------------------- /tests/fixtures/luni.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/luni.psd -------------------------------------------------------------------------------- /tests/fixtures/negative-top-left-layer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/negative-top-left-layer.psd -------------------------------------------------------------------------------- /tests/fixtures/non-utf8-pascal-string.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/non-utf8-pascal-string.psd -------------------------------------------------------------------------------- /tests/fixtures/odd-length-pascal-string.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/odd-length-pascal-string.psd -------------------------------------------------------------------------------- /tests/fixtures/one-channel-1x1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/one-channel-1x1.psd -------------------------------------------------------------------------------- /tests/fixtures/out-of-bounds-layer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/out-of-bounds-layer.psd -------------------------------------------------------------------------------- /tests/fixtures/rle-3-layer-8x8.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/rle-3-layer-8x8.psd -------------------------------------------------------------------------------- /tests/fixtures/slices-resource/1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/slices-resource/1.psd -------------------------------------------------------------------------------- /tests/fixtures/slices-resource/12.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/slices-resource/12.psd -------------------------------------------------------------------------------- /tests/fixtures/slices-resource/123.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/slices-resource/123.psd -------------------------------------------------------------------------------- /tests/fixtures/slices-resource/1234.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/slices-resource/1234.psd -------------------------------------------------------------------------------- /tests/fixtures/slices-resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/slices-resource/README.md -------------------------------------------------------------------------------- /tests/fixtures/slices-v8.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/slices-v8.psd -------------------------------------------------------------------------------- /tests/fixtures/transparent-above-opaque.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/transparent-above-opaque.psd -------------------------------------------------------------------------------- /tests/fixtures/transparent-top-layer-2x1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/transparent-top-layer-2x1.psd -------------------------------------------------------------------------------- /tests/fixtures/two-channel-8x8.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/two-channel-8x8.psd -------------------------------------------------------------------------------- /tests/fixtures/two-layers-red-green-1x1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/two-layers-red-green-1x1.psd -------------------------------------------------------------------------------- /tests/fixtures/visibility.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/fixtures/visibility.psd -------------------------------------------------------------------------------- /tests/flatten_layers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/flatten_layers.rs -------------------------------------------------------------------------------- /tests/image_data_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/image_data_section.rs -------------------------------------------------------------------------------- /tests/image_resources_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/image_resources_section.rs -------------------------------------------------------------------------------- /tests/layer_and_mask_information_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/layer_and_mask_information_section.rs -------------------------------------------------------------------------------- /tests/layer_groups.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/layer_groups.rs -------------------------------------------------------------------------------- /tests/slices_resource.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/slices_resource.rs -------------------------------------------------------------------------------- /tests/transparency.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/transparency.rs -------------------------------------------------------------------------------- /tests/visibility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/psd/HEAD/tests/visibility.rs --------------------------------------------------------------------------------