vote up 0 vote down star

I already took a look at GetIconRefFromFileInfo() and QLThumbnailImageCreate() but they just doesn't seem to be similar with what I see from the finder, which is a square icon with watermarks on it, e.g. if the file is RTF, it has this greyish watermark below that says RTF or RTFD or PDF...

Please help me out on this. Thanks. If the question is still unclear, please feel free to comment.

flag

64% accept rate
By "watermark," you mean the text at the bottom of the icon indicating the file type? That's not really a watermark... – Bears will eat you Aug 21 at 15:44
Are you referring to the document icons as, for example, provided by the Preview application located in /Applications/Preview.app/Contents/Resources/, such as gif.icns? (These are not square icons, they have that curly upper-right corner to indicate they're documents. Also, the text "GIF" is then called a badge.) So: you want the document icons as shown at developer.apple.com/documentation/userexperience/… ? And instead of the specific icon you get Generic.icns? – Arjan van Bentem Aug 23 at 10:42
Actually I wanna get the document icons with Preview in them, and yes with the folded part on the upper-right corner. I can't seem to get it using QLThumbnailImageCreate... – jopes Aug 23 at 17:34
What you're asking is still unclear. "Preview" meaning the application Preview.app, or "preview" as in the icon on the .dng file in this picture: forums.rennlist.com/upload/finder_error.jpg/… ? – Bears will eat you Aug 24 at 16:18
By the way, jopes, how are you offering a bounty for more reputation than you currently have? – Bears will eat you Aug 24 at 16:20
show 3 more comments

1 Answer

vote up 0 vote down

From MacScripter:

This is a category on NSImage which lets you get an image containing a Quick Look preview of the content of a given file. If no Quick Look preview is available, it will instead return the file's Finder icon (this is what the Quick Look panel does). It consists of only one method:

+ (NSImage *) imageWithPreviewOfFileAtPath: (NSString*) path ofSize: (NSSize) size asIcon: (BOOL) icon

link|flag
Hi. Thanks for the answer, but if you saw the code inside NSImage+QuickLook.m, it did use QLThumbnailImageCreate(), and if it's nil, it'll just use NSWorkspace's provided icon for the file, effectively calling GetIconRefFromFileInfo(). I'm sorry but I think this is not the answer I'm looking for. – jopes Aug 17 at 21:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.