Can we discuss few requirements over call related to PSD
- How to find background color of psd? Is there specific background layer in psd?
- Can we change the position of image,text in psd?
- Can we change background color of text layer?
Can we discuss few requirements over call related to PSD
bool isBackground = backgroundLayer.getLayerLock() == LayerLockType.LockImagePixels;
int top = 100;
int left = 100;
int height = layer.getHeight();
int width = layer.getWidth();
layer.setTop(top);
layer.setLeft(left);
layer.setBottom(layer.getTop() + height);
layer.setRight(layer.getLeft() + width);