Loading a Png

How do I read a graphics file back into the App if I save an image out as follows under the new Mobile commands

Dim saveFile As FolderItem = SpecialFolder.Documents.Child("Test.png")
If saveFile <> Nil and MyPicture <> Nil Then
  MyPicture.Save(saveFile,Picture.Formats.PNG, 100)
End If

You looked into Picture class documentation for a command to Open a picture file?

Don’t seem to be able to find it for iOS because it’s the same for all platforms :slight_smile: