A Uniform Resource Locator (URL) specifies the location of one or more images at a remote location. For example:

    https://imagemagick.org/MagickStudio/images/rose.png

selects a single GIF image of a rose. You can also specify an image sequence such as animated_banner.png. See formats for a list of image formats recognized by ImageMagick Studio.

You can create an animation sequence by placing two or more images in a directory accessible as an URL and ending the URL with a slash (/):

    http://www.sympatico.org/MagickStudio/images/

A URL might not hint at what type of image is being loaded:

    http://my.photos.com/j/View?u=9216&a=115372&p=1430943&Sequence=1

If the image fails to load, try hinting by adding a slash and the image type to the URL. For example, here we hint that the image is in the JPEG format:

    http://my.photos.com/j/View?u=9216&a=115372&p=1430943&Sequence=1/jpg

[comment]