Use this tag for questions related to downloading any kind of images programmatically.
Questions tagged [imagedownload]
275 questions
2
votes
1 answer
svg to png image download in iPhone
I have one functionality on my website where I want to convert svg into png and allow user to download that png image into their local machine.
I have achieved this using the below code.
var btn = document.querySelector('#download');
var svg =…

Ankur Vyas
- 118
- 9
2
votes
0 answers
How to download image file with given name in safari in javascript
If there is a any image rendered in brower. I have given a link to download that image with customized name. But in safari file is downloaded with unknown name.
In other browser it works fine.
What I got. In safari download attribute of link does…

Mohit Kumar
- 21
- 4
2
votes
1 answer
Download image file from Parse into Android
I'm creating an app (basic, low-level clone of Instagram) where a user can see images other users have posted. However, I can;t seem to download the image from Parse into Android.
I attach my code. I just want to let you know I do NOT get an error,…

Guillermo Herrera
- 510
- 4
- 24
2
votes
4 answers
Save image to SD card from url throws NetworkOnmainThread Exception in android
I am a new to Android programming and working on an app in which I want to store an image from an URL to the SD card when the user taps a button.
I found a method for it and used it but it throws NetworkOnMainThread exceptions causing the app to…

sulphuric Acid
- 585
- 6
- 23
2
votes
0 answers
Android- Picasso sometimes give SkImageDecoder::Factory returned null
I get following error when i download images using Picasso library.
SkImageDecoder::Factory returned null
The code that I'm using is as follows:
Picasso.with(context).load(mySharedPreferences.GetUserCoverImageUrl())
…

Usman Ishrat
- 147
- 1
- 7
2
votes
1 answer
Downloading images with Python
I am working on a project where I need to download some images using python. I have tried to fix it by doing different things but it is still not working. Here is some code I found and I tried to use but it does not seem to work. To be honest I am a…

MrX
- 23
- 3
2
votes
1 answer
iOS UITableViewCell asynchronous image download and change UITableView height accordingly with the use of auto layout
I'm writing an application where images are downloaded asynchronously and when the images are loaded its scaled but I just want to show as the same size within the UITableViewCell.
Since i'm using auto layout I have tried to change the height…

Imran Hishaam
- 141
- 1
- 10
2
votes
0 answers
Phonegap download image with url on IOS
I have been using phonegap and am trying to download wallpaper jpgs to the device camera roll. I have been testing this on the mobile phonegap app connecting to phonegap server. The code I am using goes as follows:
function DownloadFile(URL,…

peterpod
- 246
- 1
- 3
- 11
2
votes
2 answers
How to use Wget to download correct image size with extension ".jpg?size=2000"
I need to download many images, some have extensions like this:
http://example.com/image.jpeg?size=2000
In the browser I see a large image, but wget only downloads the smaller version of this image (without the "?size=2000" part).
Any idea how to…

Idris
- 600
- 2
- 4
- 16
2
votes
1 answer
Android Application which loads images from web services on a server
I am developing an android application which loads images from web and app running only on 2G networks.Now what factors will you consider while developing it? any help on this question ?

ULHAS PATIL
- 862
- 8
- 19
2
votes
1 answer
structured image download in scrapy pipeline
EDIT:
This is not duplicate of older version of scrapy . Scrapy has changed recently in years and current version is 0.24
Scrapy has evolved dramatically over the few years of development. Most of the answer of stackoverflow regarding scrapy are…

igauravsehrawat
- 3,696
- 3
- 33
- 46
2
votes
1 answer
Unable to curl or wget an image from remote URL
I am just trying to download an image from Facebook from the command-line (in Mac OSX)
Any ideas as to why I can't curl an image from Facebook?
curl -O…

stogers
- 259
- 2
- 12
2
votes
1 answer
Volley: Pause/Resume Download
I'm using a Volley for Loading Images. However, I want to pause Image Download on listview fling.
Is there a way to pause/resume Request Queue in Volley.
Thanks.

Gaurav Arora
- 17,124
- 5
- 33
- 44
2
votes
2 answers
Fetch images asynchronous from url in unity3d
I am making a game in which I need to integrate Facebook leader-board and facebook friends invitation like in subway surfer. I used official facebook sdk and got it done. But the approach I am following is not efficient.
My friend invite screen has…

Ankush
- 2,405
- 3
- 22
- 45
2
votes
1 answer
Picasso large image download
I read about Picasso image downloading lib but there is one problem that I can't resolve it. It's large image downloading. When I have large image i.e 2000 x 1920 it's crushed (out of memory).
How could I solve this problem?…

pmb
- 2,327
- 3
- 30
- 47