I want to update a text in TEXTLAYER and wrap it in a particular layer. Is there any possibility to do the same?
Layer appNameLayer = findLayer("App name something",psdImage);
if(null != appNameLayer){
TextLayer appNameTextLayer = (TextLayer) appNameLayer;
appNameTextLayer.updateText(appModel.getTitle());
}
appModel.getTitle is a long Text and wanted to wrap this text.