I’m having a lot of difficulty building a native-C Photoshop filter plug-in for macOS. I’ve built many of them before, but not in the past 15 years, so I’m not surprised that so much has changed. A couple of really basic questions:
(1) Is it even possible? Is anybody successfully building and using C-based Photoshop plug-ins in 2022?
(2) I’ve managed to get the ColorMunger example filter to build, but had to strip down and rebuild the Xcode project. But now it won’t link because Xcode can’t find any of the library symbols like _AllocateGlobals
, _CSCopyColor
, CSInitInfo
, and twelve others. I see that there’s no framework or library included in the photoshopsdk folder. How can one link code with no library file?