I have a lot of images, and I want automatically combine it in image sets. I want find API calls for creating digital assets without using UI.
Can you help me?
Solved! Go to Solution.
Egor Anisimov wrote...
I have a lot of images, and I want automatically combine it in image sets. I want find API calls for creating digital assets without using UI.
Can you help me?
Scene7 Tech Support can provide API details and how to do this.
For your pruposes, it might be easier to use Batch Set Presets which are triggered at time of uplaod, to create sets:
http://help.adobe.com/en_US/scene7/using/WSf6ef983f54a76485-20cc30b112624e7b244-7fff.html
Egor Anisimov wrote...
I have a lot of images, and I want automatically combine it in image sets. I want find API calls for creating digital assets without using UI.
Can you help me?
Scene7 Tech Support can provide API details and how to do this.
For your pruposes, it might be easier to use Batch Set Presets which are triggered at time of uplaod, to create sets:
http://help.adobe.com/en_US/scene7/using/WSf6ef983f54a76485-20cc30b112624e7b244-7fff.html
I'm really the wrong guy to be answering this but maybe you can start here: http://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/dam/scene7/api/Scene7UploadService.html
hope that helps,
scott
Hey this is how you may need top create image set and add assets to image set. Using S7SetHelper class you cn create image set. Try to check latest day commons bundles I guess it should be 5.6.8 and above. Below that you wont get S7SetHelper class.
import com.day.cq.dam.commons.util.S7SetHelper;
import com.day.cq.dam.api.s7dam.set.ImageSet;
ImageSet is = S7SetHelper.createS7ImageSet(imageSetParentResource, imagesetname, null);
is.add(asset);
-Maruthi
Views
Replies
Total Likes