Hi all!
I'm trying to create an little tool that initially loads an xml file
containing the following:
<root xmlns="">
<settings>
<roundedCorners>
<radius>15</radius>
</roundedCorners>
<dropShadow>
<alpha>0.7</alpha>
<distance>5</distance>
<color>0x000000</color>
<bgcolor>0xffffff</bgcolor>
</dropShadow>
</settings>
<files>
<file>
<name>s4.jpg</name>
<folder>images/queue</folder>
</file>
<file>
<name>IMAGE_10.jpg</name>
<folder>images/queue</folder>
</file>
<file>
<name>IMAGE_11.jpg</name>
<folder>images/queue</folder>
</file>
</files>
</root>
Then I take each of those image files, make rounded corners and apply a drop
shadow to them.
Finally I need to send the created back to the server, but I'm not quite
sure how to accomplish that..
Any help is appreciated
Best regards
Allan Pichler