Get Image Url from System.Image Entity

0
I am storing the profile Images of the user using the System.Image entity. Is it possible to retive the URL of the stored image so that I can set that as background using CSS instead of using a Image Viewer.
asked
1 answers
2

I don't think that would be a good idea. If you have an url for an image that is stored in your environment, this url is only valid for that environment. The css file is always the same in each environment so this will fail when you wil transfer your app from for instance test to production. I think using the image viewer is your best bet here.

answered