Questions tagged [image-load]
47 questions
0
votes
3 answers
ActionScript 3.0 how many loaders?
I want to load 2 different elements on my flash video:
First is a dynamic photo (I take the specific number from an external variable)
Latter is a swf video...
My question is?
I'm new to AS3, I saw that I need a loader and I can load everything..…

Emanuele
- 1
0
votes
1 answer
Load images in Html.fromHtml in textview (JSON String)
I am Having Problem with Loading Images from a website to a TextView using JSON string parsing. I was trying to load images with the help of Html.ImageGetter and BitmapDrawable. I saw these references Load images in Html.fromHtml in textview (http…

Mihodi Lushan
- 670
- 5
- 24
0
votes
2 answers
NoClassDefFoundError in 4.4 kitkat but not in 5.0 Lollipop - Could not find class
have an error in my application but I can not find it. Android 5.0 works normally, but in 4.4 of this error below:
Could not find class
'com.quickblox.q_municate.utils.ImageUtils$SmartUriDecoder',
referenced from method
…

viana
- 495
- 4
- 18
- 42
0
votes
1 answer
Image Loader Bitmap Cache
I show the image in android apps with image loader that image stores in local cache in bitmap. In certain device, the image has clipped and show only 30-50% but if apps uninstall and install again, the image show full and not clipped. In other…

lourentz
- 11
- 5
0
votes
1 answer
Release memory of Image Loader on android
I use ImageLoader to get images and show progress bar till image is been downloaded. This class is used by the ArrayAdapter to load images on to a GridView.
I want to know how to release image memory when the fragment that loads this gridview has…

pats
- 1,273
- 2
- 20
- 43
0
votes
1 answer
Add an Image from url into InfoWindowAdapter
I'm trying to display an image from a URL in an InfoWindowAdapter, but it does not show me the image. I'm using Volley to load images.
Does anyone have an idea how to solve this problem?
Thanks for your help!

franM
- 131
- 7
0
votes
1 answer
Add Spinning progress for ImageView in Android
I have an ImageView in which i want to show ProgressBar while loading the image from URL. To load image i am using VolleyPlus library. Here is the code to load image:
DiskLruBasedCache.ImageCacheParams cacheParams = new…

Viks
- 1,510
- 4
- 22
- 50
0
votes
2 answers
jQuery's Event for "all images loaded" after dom is modified
I have a mobile page where the contents (of pages) will loaded via ajax. I'm using iScroll and I have to reinitialize it, when the content will refreshed. iScroll needs the height of the tag. And when the loaded content has to many images, i have a…

AppGeer
- 725
- 1
- 11
- 27
0
votes
1 answer
Python Image.load() returning pixels greater than 250
I am loading my Image file using Image.open("image.tif"). Then i am using Image.load() to generate a pixelMap of the image. Then i am storing each pixel into an array. The following code describes this process. Then I want to create the ascii value…

someuser
- 43
- 1
- 8
0
votes
1 answer
System.IO.FileNotFoundException in debug but not with exe
I'll try to be simple and quick
I'm developing a program, a windows form actually.
I have a pictureBox and in the following line, when I run in debug mode(note that), I get an System.IO.FileNotFoundException exception:
pictureBox1->Image =…

Poniros
- 131
- 9
0
votes
1 answer
Detect image rendering in email
I know that services like SendGrid already have built-in plugins for this. But I want to build my own, custom, module for this.
Reason why I am doing this is my application uses several different smtp servers specified by user.
Is it even feasible…

rastko
- 567
- 9
- 24
0
votes
0 answers
How do you load a bmp file from external local files?
In AS3 adobe Flash :
How do you load a bmp (not jpg or png) files from external local files (example: my_application_path/mybmpfiles/hello.bmp), as long as I tried it's always failed, but not error for jpg files (using loader class) ?
The error said…

goggle pink
- 122
- 5
- 14
0
votes
2 answers
sending requests for images synchronously with jquery
I am having a page where I get feed from youtube and then display this on this page. There are 3 rows each of 4 images each corresponding to youtube videos. I get these image links from youtube feed itself.
What I want to achieve is while rendering…

Mangesh Borkar
- 71
- 2
- 7
0
votes
1 answer
Android: Load image on launch from URL
I am a learner and have been working on a home visitor app to get image from a URL of the visitor. Using the following code, which I found online, I was able to load image by adding an intent before the screen and adding a button on the screen…

pointNclick
- 1,584
- 1
- 12
- 17
-1
votes
1 answer
cannot reshape array of size 983040 into shape (320,320,1)
img_size = 320
def load_img(path):
img = Image.open(path)
if img is None:
raise ValueError(f"Empty Image at {path}")
img = img.convert("RGB")
return img
def load_data(path_list, gray=False, img_size=256):
data = []
for path in tqdm(path_list):
…

PRITAM BHAKTA
- 9
- 2