How to open an Image using url in java

com.aspose.psd.Image imageLogo=Image.load(url of logo);

I have the URL of a logo and wanted to open it. How can I do the same

@mail9deep

The API allows you to load using MemoryStream. Therefore, you can download the image from URL in stream first and then load that using API.