I have googled around and not seen any info. What format and icon color depths are used for applications?
Related Questions in ICONS
- Problem with QPushButton icons appearing PySide6
- How to center fontawesome icons in a div?
- SvgPicture asset does not work and shows "Try connecting the name to one that is defined, or defining the name" error
- How do I set the color of the icon for my Moodle plugin of Activity type (mod) to match the color used by the theme?
- Icon of Window form application
- CSS icons under Chrome are weirdly displayed
- How to change the color of an icon when hovered over
- Chrome PDF print image aspect ratio incorrect - very apparent with small images - is there a workaround?
- Different icons based on condition in csproj file
- Why are my Flutter (dart) icons turn into weird icons?
- Laravel + React, Inertia SSR using icons with a translation file
- Error while using react native vector icons
- Close button doesn't work and can't find the line to move it down a bit
- Display warning icon in MessageBox
- How to use the comments icon for shopware 6
Related Questions in FILE-FORMAT
- JSYAML custom schema for INT
- How to store metadata for a UTF-8 text file cross-platform?
- json file (line delimited) on GCS incorrect when private - correct when public
- Troubleshooting Multi-Slice Volume Loading Issues in NRRD Files
- Multiple .docx text files converted into a .csv table: How can I do this in R?
- Adding my own transpiled file format to Typescript imports
- Problems uploading a .tar file
- How to read a JT file?
- Is there an official documenation for REG file recommended encoding?
- Snowflake external table that sits over csv files, not handling nulls as expected
- Writing Cue Data into RF64 WAV File
- How jamboards are stored in database
- Parsing CSV file with JSON data in Golang
- Converting .csv/txt file into .mtx file
- Snowflake File Format - How to handle double quotes and acute symbols when loading data in Snowflake
Related Questions in PALM-OS
- Palm OS. editing *.prc file
- Does anyone have available the file structure spec for the Palm OS 5 tasks database?
- Reverse tethering with DUN on Bluez 5
- Max Date on PalmOS
- Where can I get a PalmOS SDK?
- Converting .pdb to mysql
- Accessing a PDB file on Android Database
- How to call #pragma segment Foo on Garnet OS
- Palm OS 5.4 (Garnet) IR programming (Use CIR on IrDa port)
- Palm OS 5 development tools
- Where to get jartoprc.exe?
- What Palm OS 5 development tools can you find nowdays?
- Where can I find PalmOS 3.5 developer tools? Palm's site no longer publishes them
- Common development platform for Mobile or Hand-held devices
- PRC-Tools For MS-DOS
Related Questions in GARNET-OS
- Palm OS. editing *.prc file
- Palm OS 5.4 (Garnet) IR programming (Use CIR on IrDa port)
- NSBasic/Palm 4.4 Tutorial
- Can I use the standard C library in a Palm OS application?
- Multi-segmented PalmOS app/library in "background"
- Palm/Garnet OS Icon format?
- Using system's standard Edit menu in a Palm OS app
- How do I detect "Easter Egg" mode in my Palm OS application?
- How can I segment my Palm OS 68K application?
- Create a calendar event on Palm OS
- "Background" task in palm OS
- Can you link 68K code compiled with CodeWarrior for Palm OS with code compiled with PRC-Tools (GCC)?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The Palm OS icon format is a variation of it's bitmap format. Palm OS supports a concept called bitmap families where multiple bitmaps of different color depths and pixel densities are bundled together, with the appropriate one chosen at runtime. An icon is just a bitmap stored in a 'tAIN' resource as part of the application. Bitmaps also can be compressed using either RLE or PackBits, an algorithm used in the original Mac OS.
If you're using a tool like PilRC to compile your bitmaps, you should be sure to include a low density and a high density bitmap. Here's a sample icon definition that I've used in one of my own programs:
I define two icons -- the standard large icon and a small icon that's used in the launcher in list view mode. The sizes are 22x22/44x44 for low and high density for the main icon, and 15x9/30x18 for the small icon. PilRC takes BMP files as input, but it outputs either .bin files for each resource or a combined PRC-format file with all the resources specified. The PilRC source code is the best reference to the actual binary format of the bitmap.