Questions tagged [image-loading]
386 questions
0
votes
2 answers
Loading image from byte array stream in UITableViewCell
I am implementing a UITableView with custom UITableViewCell. There is UIImageView there for displaying some image. But the api I am given , does not contain the download links of the images that I'll have to show in each UITableViewCell. For getting…

ayon
- 2,180
- 2
- 17
- 32
0
votes
1 answer
gwt canvas context.drawImage very slow
I'm using the GWT canvas to draw 50 identical 16x16 Images full screen (in draw()) with the requestAnimationFrame, the main loop is below:
AnimationScheduler.get().requestAnimationFrame(new AnimationCallback() {
public void…

Vjeetje
- 5,314
- 5
- 35
- 57
0
votes
2 answers
Loading an image in WP8 app on device
i am trying to make a simple application in which i have an image i have copied it in Assets folder of my project. The image i got from the web, and it is in the png format.
can some body give me an idea that how i can copy my images to my project…

Madu
- 4,849
- 9
- 44
- 78
0
votes
1 answer
Image loading failing in IE9+10
Ok so for a site that is heavily graphic based I had to come up with a way for the user not to watch each image load in one by one. So I developed the following code as a sort of preloader until all the images on the page are ready. I know usually…

MeanMatt
- 1,545
- 3
- 12
- 23
0
votes
1 answer
Load local json file with image url in Android
I am using a source for image loading from url. The image links are stored in a json file and the json file to be hosted in a server. But I want the json file to store locally may be in assets or drawable.
My problem is if i use asset manager, it…

user2301701
- 11
- 1
0
votes
2 answers
Android: how to add Progressbar to BitmapWorkerTask?
Here is my BitmapWorkerTask to load image to a ViewPager. I'm trying to add a Horizontal ProgressBar to each page for better UX showing the progress of image's loading. (I've already been using a 'indeterminate' circle progress bar.)
Is the…

jerrytouille
- 1,238
- 1
- 13
- 28
0
votes
0 answers
Image loading Illegal Argument Exception error
I'm currently programming a game and trying to load and image from an ImageLoader class and I keep receiving this error:
Exception in thread "main" java.lang.IllegalArgumentException: input == null!
at…

thehoule64
- 1,761
- 5
- 15
- 22
0
votes
0 answers
Illegal Argument Exception for loading image
I'm currently programming a game and trying to load and image from an ImageLoader class and I keep receiving this error:
Exception in thread "main" java.lang.IllegalArgumentException: input == null!
at…

thehoule64
- 1,761
- 5
- 15
- 22
0
votes
1 answer
Add the image to canvas using html or php
i try this for long time how can add the image to canvas in html or php only i got the image path i need to load the image to canvas in html or php,i don't need to add the image through jquery or javascript
in html i try this.
0
votes
2 answers
Loading image from url but ANR shows and force closes the application
Hi my app is about parsing xml file and then load the image from url and also the text and display it in a list view, but whenever am loading the image from url and while scrolling the list view little down it can't load the image properly and it…

ayansinha
- 85
- 1
- 12
0
votes
2 answers
Having different images appear when same key is pressed using canvas
I'm working on a game using HTML5 canvas where the dialogue is put in several images, each named the same but with a number at the end for its order (dialogue1.png, dialogue2.png...) and I'm trying to figure out how to make the next image appear…

Daccache
- 125
- 2
- 8
0
votes
1 answer
Loading resources from client assembly
I'm currently creating a game engine and needed to load images from resources in the client assembly which references my library. I'm using this code.
public static Image LoadImageFromResource(string name){
string asmname =…

Sri Harsha Chilakapati
- 11,744
- 6
- 50
- 91
0
votes
2 answers
Drawable in listview causes memory allocation too much?
I have a view pager with four pages, and each page have a listView. Everything's ok so far, but when i scroll the list it kicks thousand times GC_EXTERNAL_ALLOC and it dicreases performans of my app. So i track allocations by DDMS by following…

yahya
- 4,810
- 3
- 41
- 58
0
votes
4 answers
How to add Loading dialog While fetching image from server in Android?
I am trying to add Loading dialog in following code to fetch image from server and display it in Gallery view. it shows blank screen untill image comes. please help me how do i show Loading dialog while getting image from server.
Here is the code,…

Peter
- 855
- 2
- 15
- 35
0
votes
1 answer
Loading Images from sd card to grid view causes bitmap exceeds VM budget
In my Application im loading images from sd card almost 40 to 50 images in grid view for this i created adapter in which constructor loads images from sd card to global variable of array list of bitmaps with in get view im returning bitmap from…

Manju
- 720
- 9
- 23