html2Canvas n'obtient pas d'image si le champ de fichier src est URL

html2canvas(document.body,
{
   useCORS: true, //By passing this option in function Cross origin images will be rendered properly in the downloaded version of the PDF
   onrendered: function (canvas) {
     //your functions here
   }
});
Delightful Dolphin