Questions tagged [imagedownload]

Use this tag for questions related to downloading any kind of images programmatically.

275 questions
0
votes
1 answer

Error when downloading jpg using python result in: [SSL: CERTIFICATE_VERIFY_FAILED]

I've been trying to make a script that scrape 9gag and retreive posts from specific categories. The problem is when im trying to download the jpg pictures a certificate issue emerges. Is there another way to download the pictures? The url for each…
snaz
  • 41
  • 5
0
votes
2 answers

How can we download an image,when its URL not contains the file extension and upload that image with the file extension

I am using protractor.I have to download some no.of images and upload that to corresponding locations and each of the images are different.I have used below code for this const download = require('image-downloader'); …
Devleena
  • 453
  • 9
  • 25
0
votes
2 answers

How to Convert URL Images to UIImages in Swift5 and append into a array

I have an API call GET in Swift 5 Code for fetching the Images, I am getting url of the images , I have to change the url into UIImage to append the urls to a arrayimages=UIImage, data of the url is there but it is not appending to the arrayImages.…
0
votes
1 answer

Asynchronously download images from image URLs in R

I need to download a ton of images in one month. I've written a script to download small JSON text at a speed of about 200/sec on my personal machine; eventually, I will run my script on a server. (I know that image download will unfortunately be…
Prayag Gordy
  • 667
  • 7
  • 18
0
votes
1 answer

Image download issue using Python

I am downloading images using URLs through python using requests.get() function. When I gave a single URL to this function it downloads. But when given some 1000 URL's in for loop, some of the resultant images gets corrupt. But if I open up the URL…
0
votes
1 answer

Download file using Web API Core and Angular 7

I am trying to download file (Image or PDF) with angular but no success. I did like below Downlod image It is opening image in same tab…
GOPAL SHARMA
  • 657
  • 2
  • 12
  • 37
0
votes
1 answer

Download image and pdf in Angular 7

I am in need of downloading an file may be it is image or pdf. For this I have written below code. Downlod image and
GOPAL SHARMA
  • 657
  • 2
  • 12
  • 37
0
votes
2 answers

Download image to TableView [Swift]

I have a swift project with the following files: – ViewController.swift which mostly contains a tableView and in which data from Firebase is downloaded – ViewControllerTableViewCell.swift which contains the outlets for the tableView –…
j___.___j
  • 286
  • 1
  • 3
  • 20
0
votes
1 answer

App crashing on ipad when downloading images

im using the sdwebImage library to download images in tableview cell and display them. the images are high resolution images. when the app launches, and starts loading, it suddenly crashes, without giving any errors, except sometime giving "received…
user7477041
0
votes
2 answers

downloading multiple high resolution images leading the app to crash

I'm downloading high-resolution images in a table view, for each cell, there is a large image. @property (weak, nonatomic) IBOutlet AsyncImageView *menuItemLogo; . . . - (void)setCellWithImage:(NSString *)imageURL { if (imageURL && [imageURL…
user7477041
0
votes
3 answers

Images not showing properly in listview in android

I am downloading multiple attachments then writing images in sdcard but my problem is that when display image from sdcard on list showing half black image I am using picasso image loader for show images from sdcard. I getting same problem with glide…
hharry_tech
  • 952
  • 1
  • 8
  • 24
0
votes
1 answer

How to disable image from saving into internal memory while downloading from an url

I am using the following code to download an image from an url, then saving to sqlite and then view in imageview in an activity. new LoadProfileImage().execute(jsonObject.getString("image"), id, title, promoexpdate,…
Cyril David
  • 103
  • 2
  • 10
0
votes
1 answer

google cloud platform for image fetching from url

I need to download 1 million images(approx) from different web sources using image url and store it in google cloud platform using python. Is there any specific services available in google cloud platform for faster download with storage option.
nishant kumar
  • 507
  • 10
  • 28
0
votes
1 answer

Android download manager retrying and failing with HTTP_DATA_ERROR

class LongOperation extends AsyncTask { @Override protected String doInBackground(String... params) { try { …
0
votes
2 answers

Image is uploaded to server but not shown in Imageview application android

I have created photo uploading feature. User can take photo and choose a photo from a file and upload it to the Server. At this moment the photo is uploaded successfully to server. But when i look at my app, it is showing the old image. the image is…