Questions tagged [imagedownload]

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

275 questions
0
votes
1 answer

How to download image/s from cloudinary using node.js

Hi I'm working with cloudinary in my node.js project, and I have search a lot about how to download image/s from cloudinary to my server. Is there anyone who knows how to do that ? I didn't find this far a solution someone know how to do that ?
noam aghai
  • 1,364
  • 3
  • 18
  • 30
0
votes
1 answer

how to get transform a local image to a web accessable image

Generally,if we want to display a image in the web page,we give the uri of the image resource like: http://host:port/image/xxx.jpg. Now,there are some images in my file system,and I save its absolute path in the db. Like this; id name …
hguser
  • 35,079
  • 54
  • 159
  • 293
0
votes
0 answers

Create a drawable into android project by fetching an image from the internet with Picasso library?

So I have some images in the cloud that I can access via direct url. I know the Picasso library can fetch that image from the url passed and then place it in an image view on the screen. But is it possible for it to fetch the image and instead of…
0
votes
1 answer

How to "reload" a cloudflare 520 request with ruby?

I wrote a ruby script to download an image URL: require 'open-uri' imageAddress = ARGV[0] targetPath = ARGV[1] fullFileNamePath = "#{targetPath}test.jpg" begin File.open(fullFileNamePath, 'wb') do |fo| fo.write…
kraftydevil
  • 5,144
  • 6
  • 43
  • 65
0
votes
1 answer

javascript download image which requires referer

The image I want to download returns 403 when I tried to download with javascript but I can download image with python code like below. It adds referer to headers and downloads it. req = urllib.request.Request(image_url, headers={"Referer":…
fiddlest
  • 1,262
  • 2
  • 17
  • 42
0
votes
0 answers

saving image to server with a download link

I have a code which generates the token url for image which upon hitting will directly download the image to a computer It will be like…
hemanth kumar
  • 529
  • 1
  • 6
  • 25
0
votes
1 answer

Downloading image to webdav folder from url with new name and retrieve

Hi I have this PHP code (Custom Script) to query for FileAttachment URL from RightNow Incidents,
hemanth kumar
  • 529
  • 1
  • 6
  • 25
0
votes
1 answer

Picasso. Easy way to load next image if previous not alavailable

I have a large list of links to images (List). Is there an easy way to download the first available image? I do not want to manually catch the error and run the new loading instance (or I just do not understand how to do it simply). I just…
Mikhail
  • 2,612
  • 3
  • 22
  • 37
0
votes
1 answer

Picasso Library not downloading full image in android on network state change

I am using Picasso library in my android application but when i change the network state the image is half downloaded.Please suggest me something so that image always fully downloaded.
Shubham Chauhan
  • 929
  • 2
  • 7
  • 18
0
votes
0 answers

Image loading with Kingfisher

I am new to IOS development and trying to load image from url using Kingfisher library. I am using Kingfisher 2.6 with Xcode 7 and swift 2.3. For that i have created a collection view cell with images. All works fine at first run. Images are shown…
H Raval
  • 1,903
  • 17
  • 39
0
votes
0 answers

Is there a way to check only first data byte from remote url using NSData?

I've this problem in this context: I receive from url a json with some options of images like: var original : String? var small : String? var medium : String? var large : String? Only original is right that exists, but can be…
Gehlen
  • 160
  • 1
  • 15
0
votes
2 answers

Picasso - Showing Toast/Message when image saved to disk

I am using picasso to save image to disk on tap of a button by the user and I want to generate a feedback in the form of a Toast to the user that the image has been downloaded. For this, I am trying to run a toast on the UI Thread by using the…
Divij Sehgal
  • 647
  • 2
  • 11
  • 26
0
votes
4 answers

How to put static image until download image from url using picasso

In my app, I have listview with imageview. I'm Using picasso for download image from URL. Its working perfectly. But my issue is, Its take some time to download.So, I want to show Image from drawable folder until image download.Once downloading…
hikoo
  • 517
  • 4
  • 10
  • 20
0
votes
2 answers

android how to set Error image using Aquery library

I have a custom Gridview. In my adapter asynchronous image downloading done using AQuery. images are downloaded properly but in some cases error will occur so that time imageView background goes totaly white.i want to set that error image. Now here…
0
votes
0 answers

How to cache images using volley

I am using Volley Library for my app. I want to cache images to memory and also use diskcaching for some of data required for further processing. The problem I am facing is, all the available links talks abt direct image url passed: NetworkImageView…
chitra
  • 77
  • 9