psd 0.3.5

A Rust API for parsing and working with PSD files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Major Sections

You can think of a Photoshop file as a byte slice `&[u8]`.

These bytes are organized into 5 major sections, each of which have their own sub-sections.

We represent this in our code using the `MajorSections` type.

```rust
// Imported into the book from `src/sections/mod.rs`

{{#include ../../../../../src/sections/mod.rs:11:35}}
```

Our parsing comes down to reading through the bytes in this byte slice and
using them to create these five major sections.