Questions tagged [image-loading]
386 questions
0
votes
1 answer
Universal Image Loader : IllegalArgumentException when using FileNameGenerator with extension
i want to add .jpg extension to the images being saved using universal image loader but it seems we can't use "." in the name of files .
public class UrlFileNameGenerator implements FileNameGenerator {
@Override
public String generate(String url)…

Ankur Teotia
- 227
- 1
- 10
0
votes
1 answer
GWT Canvas: Drawing images in a loop using an arraylist in java
I am having difficulties drawing all images in a ArrayList to the canvas.
I was first able to correctly draw all the images using just one path name for all images in the code below:
private ArrayList list;
//... some…

studnet
- 1
- 1
0
votes
5 answers
Image streching in list view for multiple resolutions
This question may be off topic but I am really looking for an answer.
I am using list it has image and text (40% image and 60% text). Image is loading from the server. I am using Universal Image loading lib for cache. We are sending image…

Sandip Jadhav
- 7,377
- 8
- 44
- 76
0
votes
1 answer
Error while using ImageLoader, saying its not initialized
I was following this tutorial. I am trying to create a simple image view pager. The sample project following the tutorial is working fine. But, when I am trying to use the same code inside my project, I am getting ImageLoader not initialized error.…

kittu88
- 2,451
- 5
- 40
- 80
0
votes
1 answer
How to make scrolling through images as fast as Apple's Photos app
The Goal — On an iPhone, to browse through several hundred locally-stored jpgs using a UIScrollView.
The Problem — Like many others before me, I've tried implementing a scroll view based on Apple's Page Control sample code and found it lacking. The…

clozach
- 5,118
- 5
- 41
- 54
0
votes
2 answers
android - universal image loader how to apply displayer when image failed to load?
I have loaded and displayed some image from internet using UIL.
DisplayImageOptions options = new DisplayImageOptions.Builder()
.displayer(new CircleBitmapDisplayer(0xFF70C7BE, 2))
…

Season
- 1,178
- 2
- 22
- 42
0
votes
0 answers
Custom function to add a secondary logo
I'm looking to create a custom function in order to be able to change/load a new image from the "customize" panel (this because I won't be the one who manage the website, so I'm trying to made things as easy as possible).
I used by default the…

tabris963
- 110
- 2
- 14
0
votes
1 answer
Volly imageLoader onResponse imageContainer width null
I'm trying to get image bitmap and redraw it in rounded image . but unfortunately i got NPE on imageContainer [the width is actually NULL].
here is what i have tried so far,
@Override
public void onResponse(ImageContainer image,…

bliveinhack
- 40
- 1
- 8
0
votes
1 answer
Load an image to a GSL matrix
Does anyone know about some function that loads a grayscale image into a GSL matrix?
Something like:
gsl_matrix *M;
load_image("./image.jpg", M); // any image extension would also be fine

Beginner
- 325
- 5
- 16
0
votes
0 answers
Context path changed while loading image in html page
I am maintaining already developed web application (in Java(struts,hibernate)).
I am getting following error in my Google-chrome console while loading one page.
Mixed Content: The page at 'https://local.myproject.co.in/this/is/just/temp/path/111'…

Vishal Zanzrukia
- 4,902
- 4
- 38
- 82
0
votes
0 answers
Can't load images from Executable JAR File
I'm developing a game in Java, but I'm having trouble executing it as a JAR file. Everything works fine when running it from Eclipse, but once it's exported to .JAR, no images load. I've searched many similar questions, and this seems to be a common…

Fábio Xavier
- 11
- 4
0
votes
0 answers
ListView scroll is slow when flinging
im using a listview to display a picture and a name. The problem im having is when i fling the listview it has a very choppy scroll. Im using the Android query lib to load the images. I get a lot of GC_FOR ALLOC freed in the logcat. Not sure what is…

samantha jordan
- 81
- 8
0
votes
3 answers
Get path of the image and load it with BufferedImage
I don't know why in Java it should be so complicated, but I've already spent a good few hours on this. I have a png image in \src\resources\resize-cursor.png
Now, I want to use this image with BufferedImage class
BufferedImage myPicture = null;
try…

inside
- 3,047
- 10
- 49
- 75
0
votes
1 answer
SimpleImage doesn't work with big files
I'm using SimpleImage (https://github.com/claviska/SimpleImage). I'm trying to edit a big photo: http://srv1.jpg.co.il/4/5401f91f41229.jpg (13312x1671, 3.2mb), and it returns this error after using the overlay() function:
( ! ) Fatal error:…
user3961151
0
votes
1 answer
Android want to show image loading progress
I am loading image from a given array of URL .I want to show the progress of the image loading similar to the below screenshot.
is it possible to get their loading indication?

kishore
- 96
- 5