Пример #1
0
 private bool DownloadImage(string item, string result)
 {
     try
     {
         this.Log().Info("Downloading image for " + item);
         ImageResize.ResizeImageFixedWidth(result, Path.Combine("images", item + ".jpg"), 512);
         return(true);
     }
     catch (WebException)
     {
         return(false);
     }
 }