Use this tag for questions related to downloading any kind of images programmatically.
Questions tagged [imagedownload]
275 questions
1
vote
2 answers
Shutterstock - Automated multiple image download
Is there by any possible means any way to automate downloading multiple Shutterstock from a list of image IDs, the process is:
Opening Shutterstock in the browser
Pasting the images IDs in Shutterstock's search filed
Opening each image in a new…

Joseph Mars
- 11
- 1
- 2
1
vote
0 answers
Long process with image download time optimization in PHP
I'm developing a plugin for WordPress that sync up a custom post type with many servers that provide an XML for this purpose. Wordpress has nothing to do, anyway...
The problem is it takes a very long time to perform this process, let's say one XML…

josecash
- 339
- 4
- 19
1
vote
1 answer
Image download code works for all image format, issues with PNG format rendering
I am using the code below to download and show image from server to my ImageView
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import…

Rohit Mandiwal
- 10,258
- 5
- 70
- 83
1
vote
0 answers
Javascript Bookmarklet - Download Images
Edit: Thanks to @Dogoku, I was able to find a solution (here). It turns out that Chrome doesn't allow/handle the download attribute anymore, so we have to force a workaround.
I'm trying to create a javascript bookmarklet that downloads images (code…

a_lovelace
- 490
- 4
- 11
1
vote
1 answer
How to make image crawler which can download images with their respective URLs
I'm working on a project where I need a dataset of Images available on the Internet and their URLs. For this, I have to download a few thousand no. of images. So, I'm planning to download the images from image hosting sites like…

Mridul Sachan
- 93
- 1
- 2
- 11
1
vote
1 answer
Download Image from android webview. Where are those image saved?
I've created a webview android app and added " long press to save image" option.
the code runs without a problem and it also downloads the image, I can open the downloaded image from notification panel but i dont know where it is saved. i searched…

सृजन सृजन
- 35
- 1
- 9
1
vote
3 answers
How to show preview image before downloading in iOS?
how to display preview image before downloading actual image.?
WhatsApp is doing similar thing, before downloading its shows preview image. My question is how to display preview image?
Preview Image before downloading...
After downloading...
Above…

Shelly Pritchard
- 10,777
- 4
- 18
- 17
1
vote
1 answer
Retrieve a blob file from SQL database and save on local storage in python environment
I am trying to retrive a image from a SQl database and save in local storage. The image uploaded into database is a tif file(using a medium blob field). How can i retrieve the image as a tif file in to the local storage.
I have tried to do perform…

Richiedlon
- 111
- 1
- 4
- 13
1
vote
1 answer
Upgrading AlamoFireImage - Downloading Image
How would I upgrade this:
ImageDownloader().downloadImage(URLRequest: URLRequest) { response in
...
}
to the latest AlamofireImage? downloadImage(URLRequest:) doesn't appear to work anymore.

Tim Nuwin
- 2,775
- 2
- 29
- 63
1
vote
1 answer
Download image(SSL) and store it on SDcard in Android?
I need to download a single image at time from the Internet and then save it on the SD card. How do I do it? I have made an attempt, but when I try to view that downloaded image, it shows the message, "No Preview Available". Please see my code…

Praveen
- 90,477
- 74
- 177
- 219
1
vote
2 answers
Android, loading images efficiently in a list adapter
I am writing an android app. I have an ArrayAdapter which I am using to display a list of items where part of each item is an image. I am downloading the images asynchronously in the adapers getView() method and I am using a cache to keep it as…

Richard Mannion
- 289
- 5
- 17
1
vote
0 answers
Android Volley - ImageLoader's getInstance() method is not available
I'm new to android and I'm trying to download images from url using Volley.
I've already succeeded to display the image from some url using RequestQueue and ImageRequest.
But now I'm trying to download the image to the device to some specific…

Natalie
- 163
- 1
- 3
- 15
1
vote
1 answer
Fresco - Support multiple OKHttp Clients
My android app supports multiple user logins.
I user Dagger2 to maintain the UserScope dependencies which get created and destroyed as user switch happens.
One of these dependencies is an OkHttpClient for every user, with its own…

duskandawn
- 646
- 1
- 10
- 19
1
vote
0 answers
Retrieving an image in Google Sheet cell using Python
I am unable to read in an image in a Google Sheet cell despite using the Sheets API v4, as mentioned in this question. The value I get is simply a null string, "". However, I am able to retrieve all text data in other cells.
Any advice is much…

tktang
- 11
- 3
1
vote
1 answer
Image url start with https not downloading android
I'm downloading image using url like below,
final String url = article.image.url;
String parentFolder = ""+article.category_id;
final String fileName = ""+article.image.id;
FileManager fileManager =…

Sangeetha
- 496
- 1
- 7
- 25