Is it possible to load a picture form url?

I have many picture store in database. Is it possible to load form url?
Or put it in to clipboard and paste?

Need some more details here – are you trying to open the picture in Photoshop from a URL, or display it in a panel or dialog?

Open the picture in Photoshop and I don’t want to download to folder.

navigator.clipboard.setContent({“text/plain”: “Hello!”});

This code not work. Is there I miss something?

For Photoshop to open a picture, it needs to be downloaded to disk. You’ll need to download the file first with a combination of fetch and the UXP file system APIs, and then ask Ps to open it from a location on disk.

There’s no support for opening a file from a remote location as a Photoshop document.