Skip to main content
Participant
January 5, 2013
Answered

i want to develop a plugin for photoshop cs6..how can i configure SDK on visual studio 2010 and comp

  • January 5, 2013
  • 1 reply
  • 1845 views

i want to develop a plugin for photoshop cs6..how can i configure SDK on visual studio 2010 and compile sample code..i have added all files but visual studio is unable to find some headers files..as they are included...

This topic has been closed for replies.
Correct answer Tom Ruark

Right click on your project in Solution Explorer and select Properties.

Click on C++ -> General -> Additional Include Directories

Add in the folders you need. It does not recurse so you have to add each folder in turn.

The Dissolve example looks like this:

..\..\..\..\PhotoshopAPI;..\..\..\..\PhotoshopAPI\Photoshop;..\..\..\..\PhotoshopAPI\PICA_SP;..\Common;..\..\..\Common\Includes;%(AdditionalIncludeDirectories)

1 reply

Tom Ruark
Tom RuarkCorrect answer
Inspiring
January 7, 2013

Right click on your project in Solution Explorer and select Properties.

Click on C++ -> General -> Additional Include Directories

Add in the folders you need. It does not recurse so you have to add each folder in turn.

The Dissolve example looks like this:

..\..\..\..\PhotoshopAPI;..\..\..\..\PhotoshopAPI\Photoshop;..\..\..\..\PhotoshopAPI\PICA_SP;..\Common;..\..\..\Common\Includes;%(AdditionalIncludeDirectories)

Participant
January 8, 2013

Thanks for your help..i have compiled the sample code of outbound..it creates a file named outbound.8be..now where should i place that file so that photoshop will load my plugin..i had placed it in plugin folder but photoshop is not loading that plugin..