PabloPaint
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Graphics |subcat2=Atari graphics formats |extensions={{ext|pa3}} }} '''PabloPaint''' is a paint program for Atari. Images are raste...") |
(→Sample files: Re-updated samples link) |
||
| (4 intermediate revisions by 4 users not shown) | |||
| Line 3: | Line 3: | ||
|subcat=Graphics | |subcat=Graphics | ||
|subcat2=Atari graphics formats | |subcat2=Atari graphics formats | ||
| − | |extensions={{ext|pa3}} | + | |extensions={{ext|pa3}} {{ext|ppp}} |
}} | }} | ||
'''PabloPaint''' is a paint program for Atari. Images are raster. | '''PabloPaint''' is a paint program for Atari. Images are raster. | ||
== Identification == | == Identification == | ||
| − | PA3 files begin with ASCII "{{magic|PABLO}}". | + | PA3/PPP files begin with ASCII "{{magic|PABLO PACKED PICTURE}}". |
| + | <pre> | ||
| + | .PPP (st low resolution, app version 1.1) | ||
| + | .PA3 (st high resolution, app version 2.5) | ||
| + | |||
| + | 43 bytes file id ["PABLO PACKED PICTURE: Groupe CDND " 0x0D 0x0A] | ||
| + | ? image data size in bytes stored in plain in ascii text + cr/lf | ||
| + | 1 byte resolution flag [0 = low, 2 = high] | ||
| + | 1 byte compression type [0 = uncompressed, 29 = compressed] | ||
| + | 1 word image data size in bytes (same value as above) | ||
| + | 16 words palette | ||
| + | ? image data | ||
| + | |||
| + | Uncompressed images are simply screen dumps as one might expect. | ||
| + | </pre> | ||
== Software == | == Software == | ||
* [[RECOIL]] | * [[RECOIL]] | ||
* [[Tom's Editor]] | * [[Tom's Editor]] | ||
| + | * [http://snisurset.net/code/abydos/ abydos] | ||
== Sample files == | == Sample files == | ||
| − | * | + | * {{DexvertSamples|image/pabloPaint}} |
| + | * http://whatis.rest7.com/how-to-open-pa3-file | ||
| + | |||
| + | == Links == | ||
| + | * {{AtariForumWiki|Pablo_Paint_file_format|Pablo Paint file format on the Atari Forum Wiki}} | ||
Latest revision as of 16:46, 5 August 2025
PabloPaint is a paint program for Atari. Images are raster.
Contents |
[edit] Identification
PA3/PPP files begin with ASCII "PABLO PACKED PICTURE".
.PPP (st low resolution, app version 1.1) .PA3 (st high resolution, app version 2.5) 43 bytes file id ["PABLO PACKED PICTURE: Groupe CDND " 0x0D 0x0A] ? image data size in bytes stored in plain in ascii text + cr/lf 1 byte resolution flag [0 = low, 2 = high] 1 byte compression type [0 = uncompressed, 29 = compressed] 1 word image data size in bytes (same value as above) 16 words palette ? image data Uncompressed images are simply screen dumps as one might expect.