I've retrieved the URL of an image which has already been uploaded to a website. How can I programmatically add this image to my Dropzone component and see its preview instantly? I tried the following code but the image was not shown:
var mockFile = { name: "image.jpg", size: 12345 };
imgUrl = "http://example.com/image.jpg"
myDropzone.options.addedfile.call(myDropzone, mockFile, imgUrl);