🛠️ Bundles images for shockwave files into a spritesheet
This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Rypi Development e71a1939ba Initial commit
2023-07-31 16:32:33 +00:00
.github Initial commit 2023-07-31 16:32:33 +00:00
src Initial commit 2023-07-31 16:32:33 +00:00
swfs Initial commit 2023-07-31 16:32:33 +00:00
.editorconfig Initial commit 2023-07-31 16:32:33 +00:00
.gitignore Initial commit 2023-07-31 16:32:33 +00:00
package.json Initial commit 2023-07-31 16:32:33 +00:00
README.md Initial commit 2023-07-31 16:32:33 +00:00
tsconfig.json Initial commit 2023-07-31 16:32:33 +00:00
yarn.lock Initial commit 2023-07-31 16:32:33 +00:00

Good to know

🌌 Magic numbers (5.2 PNG Signature)

Identifying file formats in binary can be a bit tricky. In fact, they are magic numbers when reading the first bytes:

  • PNG: 0x89 0x50 0x4E 0x47 0x0D 0x0A 0x1A 0x0A
  • GIF: 0x47 0x49 0x46 0x38 0x39 0x61
  • JPEG: 0xFF 0xD8
  • ERRONEOUS_JPEG: 0xff, 0xd9, 0xff, 0xd8, 0xff, 0xd8