Scene7 Automatic Swatch Set Creation | Community
Skip to main content
veronica_sapien
New Participant
October 16, 2015
Solved

Scene7 Automatic Swatch Set Creation

  • October 16, 2015
  • 1 reply
  • 1295 views

I'm not sure if this is a possibility, but is there a feature in Scene7 to create swatch sets upon uploading assets? Say, for instance, I have an image named "ASW100-BK001.jpg" and a swatch asset named "ASW100-BK001_SW.jpg". Is there a way to configure Scene7 so that it recognizes that anything with "_SW" is a swatch and should be placed in a Swatch Set with "ASW100-BK001.jpg" with a specified naming convention? 

Thanks,

Veronica

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by

Hi Veronica,

You can try using api which will create swatch set.

some think like this

 

import com.day.cq.dam.commons.util.S7SetHelper;

import com.day.cq.dam.api.s7dam.set.SwatchSet;

//Creating swatchset

SwatchSet ss = S7SetHelper.createS7SwatchSet(Resource parent, String name, Map<String,Object> props)

//Adding asset to the swatch set

ss.add(Asset asset, Asset swatch) ;

Create a workflow process step with the above api which will create swatch set for every image upload in DAM. This is available in CQ 5.6.1

API - https://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/dam/commons/util/S7SetHelper.html

-Maruthi

1 reply

Accepted solution
October 16, 2015

Hi Veronica,

You can try using api which will create swatch set.

some think like this

 

import com.day.cq.dam.commons.util.S7SetHelper;

import com.day.cq.dam.api.s7dam.set.SwatchSet;

//Creating swatchset

SwatchSet ss = S7SetHelper.createS7SwatchSet(Resource parent, String name, Map<String,Object> props)

//Adding asset to the swatch set

ss.add(Asset asset, Asset swatch) ;

Create a workflow process step with the above api which will create swatch set for every image upload in DAM. This is available in CQ 5.6.1

API - https://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/dam/commons/util/S7SetHelper.html

-Maruthi