views:

255

answers:

2

I have an image format, and photoshop doesnt support it, and Ive been tasked with writting a plugin to import or open the format, but there seems to be little information out there and what information I can find is all about writting filter, but I want import/export/open not a filter!!!!

+3  A: 

My experience with photoshop import filters is roughly six years old, so take this comment with a grain of (old) salt.

I just took the import filter example code from the official SDK as a boilerplate and added my own decoding function. It was a straight forward job and took a week from start to finish.

If I remember right the worst thing was:

  1. Getting the compiler settings right and compile the example code (two days)

  2. Learning how the Photoshop GUI works. It was not standard win32 back then but something half mac resource based. I think they've changed that though.

Nils Pipenbrinck
+3  A: 

You'll want to get a copy of the Photoshop SDK. This has all of the documentation and source examples you'll need to write an import plugin.

J. Peterson