Questions tagged [loadimage]
179 questions
0
votes
3 answers
I wanna learn how to load images in Asynctask way and load those in listViewAdapter
everybody,
I get a problem that I use a listView to show hundreds of images from my local resources,and I set the image full of screen.There is a item with a imageView and a TextView in each list item.But when I slide to the next item ,it's not…

Jafir
- 93
- 9
0
votes
1 answer
Clicking or hovering over multiple images in canvas?
I am working on a project for my programming class. I'd like to essentially have a canvas with a background element (say a room.jpg) and then maybe three interactive objects in the room (lamp.jpg, couch.jpg, desk.jpg). I'd like for it to be that if…
user4355060
0
votes
1 answer
Processing: Trying to create stop motion animation with array of images
I'm trying to create a stop motion animation in processing using 19 images. The only image it shows is the last one in the array which then I thought it must be because of the framerate it would load all 19 in one second, so I tried putting the…

Ceramicwhite
- 57
- 1
- 6
0
votes
1 answer
How to load image from external URL in jQuery, WordPress theme?
I have downloaded WordPress theme and I want to modify it for my needs. So my problem is: There is slideshow in the theme and it's loading the images that are showing one after another. I posted the code below, but the part that we are interested…

delux
- 1,694
- 10
- 33
- 64
0
votes
1 answer
I am unable to draw image on Canvas in J2ME
I am try to load image on Canvas but it giving java.io.IOException exception. I don't know in which folder i have to put image. but right now i am putting image in F:\New Folder\DrawImage\src\Waterfall.png. i am using netbean editor for coding.…

Pawan Chaurasiya
- 881
- 2
- 16
- 30
0
votes
1 answer
LoadImage (Win32) returns 0x06 error
I'm new to Win32 API.
I'm trying use the win32 API. When I load an image I get a handle back, but I also get GetLastError response 0x06, invalid handle. What am I doing wrong?
class Program
{
[DllImport("user32.dll", EntryPoint="LoadImage",…

mac671
- 91
- 1
- 9
0
votes
0 answers
can't get another user profile image - google play game service
i'm not good english. sorry..
my question about "goole play game service" is this.
i used "google play game service".
i applied multiplay.
when i get connected user profile photo, arise error.
This success that bring my profile photo.
another…

sih
- 1
- 2
- 3
0
votes
1 answer
Calling a jquery plugin's methods from within a backbone view
I am trying to call the loadImage.parseMetaData method of the loadImage library from within a function in my Backbone view, but it says that the method is undefined. The 3rd party plug in is this…

Euan Millar
- 456
- 1
- 6
- 13
0
votes
1 answer
Why do I get a java heap space exception when I load around 11k images with a size of around 40mb
I have a situation in my program where I need to access a certain number of images saved on my hard drive. I could either only load them once I really need them or load them all already at start up.
Out of curiousity I tried to read all (around…

Waylander
- 825
- 2
- 12
- 34
0
votes
2 answers
How to load the most fresh image from a directory in processing
Please, let me know how to get processing to load the newest image from a directory.
img = loadImage("pic1.jpg"); is the basic example

rjth
- 95
- 1
- 3
- 12
0
votes
1 answer
window "Image" has a strange caption: "@ -|TM", which is not dependent on the name
I am aware my question is similar to:
OpenCV 2.0 C++ API using imshow: returns unhandled exception and "bad-flag"
Though I hv tried all the suggested and verified solutions from this page as well as other related pages, I still face the same…

cappy0704
- 557
- 2
- 9
- 30
0
votes
1 answer
Trouble loading images in Java
Hi I am taking a class in Java and am pretty new to programing.
I am trying to write a program asks the user to load different images and returns their RGB values in a multi dimensional array. I have the both parts working separately but I am…

Dan
- 11
0
votes
2 answers
Is there any native functions in Linux that load and save images without using external libraries?
In Windows LoadImage API loads image to the memory.
FreeImage (http://freeimage.sourceforge.net) is a cross-platform library for loading and saving images, but I want to use functions like LoadImage in Windows, that do not depend to any external…

Amir Saniyan
- 13,014
- 20
- 92
- 137
0
votes
1 answer
I need to load a server side image into a user defined 'frame' with straight js on canvas element-
I have a canvas that allows the user to stroke a rectangle - I need this newly drawn rectangle to become the destination coords for an image coming in from db
Im hoping that one of you javaScript jedi's would quickly high-level outline or…

MCGRAW
- 777
- 14
- 37
0
votes
0 answers
Failed to load resource (Javascript image.src)
I want to ask you what's wrong with my code below :
var myCanvas = document.getElementById('myCanvas');
var ctx = myCanvas.getContext('2d');
var image = new Image();
image.onload = onLoad;
image.src = './PS_Countdown.jpeg';
ctx.drawImage(image, 25,…

Francesco
- 349
- 5
- 10