1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 07:47:34 +00:00

Documentation: Better file formats documentation

This commit is contained in:
sfdd 2022-07-11 02:58:10 +03:00 committed by Linus Groh
parent b8cfec7b1f
commit d1671d4f86
5 changed files with 184 additions and 16 deletions

View file

@ -0,0 +1,29 @@
## Name
PP - Pixel Paint application file format (.pp)
## Description
Pixel Paint files store the drawing data produced by the Pixel Paint application.
This is a rough overview of the contents of the files:
- width
- height
- layers (optional)
- width
- height
- name
- locationx
- locationy
- opacity_percent
- visible
- selected
- bitmap
- guides (optional)
- offset
- orientation
## See also
- [`Userland/Applications/PixelPaint/Image.cpp`](../../../../../Userland/Applications/PixelPaint/Image.cpp)