Hi, I am trying to write an Icon-Extractor.
Is there documentation available for the ICN# resource, regarding its structure and other relevant details.I would like to know how I can write Icon information into a file programmatically, once the Icon information has been extracted.
TIA, Entwicklung
I think it's just raw bitmap data for the icons one after another:
/*----------------------------ICN# • Icon List------------------------------------------*/ type 'ICN#' { array { hex string[128]; /* Icon data */ }; };
On Friday, June 21, 2002, at 05:30 AM, Entwicklung wrote:
Hi, I am trying to write an Icon-Extractor.
Is there documentation available for the ICN# resource, regarding its structure and other relevant details.I would like to know how I can write Icon information into a file programmatically, once the Icon information has been extracted.
TIA, Entwicklung
-- Jude Giampaolo jude@smellycat.com http://www.smellycat.com/jude/ Woodpeckers: Nature's foley artists
Yes there is documentation on this look for IconFamilies in carbon. the ICN# is just the black and white icon resource there are other resources as well. If you are trying to do this in Objective-C then don't waste your time, it's been done already and the source code is freely available, http://homepage.mac.com/troy_stephens/software/objects/IconFamily/
On Friday, June 21, 2002, at 07:00 PM, Entwicklung wrote:
Hi, I am trying to write an Icon-Extractor.
Is there documentation available for the ICN# resource, regarding its structure and other relevant details.I would like to know how I can write Icon information into a file programmatically, once the Icon information has been extracted.