Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
159 views

Loading image from URL in Windows Phone 7

I use below code to load image from URL in my winodws phone 7 application. Uri uri = new ...
4
votes
1answer
199 views

My image is done loading, but its height and width have not yet been updated. When does this happen?

I'm using a jQuery plugin that invokes a callback once all images on page have been loaded. It checks the imageObject.complete property and binds a handler to the load and error events to determine ...
4
votes
5answers
1k views

png image blurry when loaded onto texture

I have created a png image in photoshop with transparencies that I have loaded into and OpenGL program. I have binded it to a texture and in the program the picture looks blurry and I'm not sure why. ...
3
votes
1answer
243 views

How to force Firefox (Version 6) to free memory?

I'm working on a slide-show-like web app in which the current image is drawn onto a canvas and you can flip through images with next/prev buttons. The images a loaded with someImage.src and for ...
3
votes
1answer
2k views

SecurityError: Error #2000: No active security context

I recently had this vague error happen to me with the use of LocalConnection. It happened every time I tried to connect and send data to another swf. Doing an internet search came up with little ...
3
votes
2answers
105 views

What's a good technique for displaying a “loading…” image?

I am working with a div that has any number of img elements inside it. Right now, each img has the following CSS: #content > img { display: none; position: absolute; top: 0px; left: 0px; } And ...
3
votes
1answer
3k views

Android: lazy loading in Gallery

I've reviewed some posts about lazy loading but I believe my problem is a bit different. I have a gallery (my class extends Gallery) which displays 20 rather large in size images (400-500K each). I ...
3
votes
8answers
386 views

Simple image loading libraries

I have an app that uses this library (actually a direct port to D) for some image processing. I'm looking for some other libraries of a similar style to use to load other file types. Things I ...
2
votes
3answers
111 views

Please explain this code

Trying to make sense of the code below, as I want to customise it a bit. As per the comments, the callback function is passed the last image to load as an argument. Can someone please explain how the ...
2
votes
1answer
638 views

GWT Image Loading for Canvas

Without using any image loading library, I am loading images like below: final Image img = new Image(); img.setVisible(false); RootPanel.get().add(img); img.addErrorHandler(new ErrorHandler() { ...
2
votes
1answer
42 views

How do I get alerted in javascript that an image's dimensions are available?

I need to be able to wait to start a function until the height and width of an image are available. When this code calls start(), it still says the height and width are zero: var img = new Image(); ...
2
votes
6answers
317 views

Load browser images with javascript event?

I've got a page containing a lot of images, which are initially hidden from view as I'm using tabbed divs (ie. hiding some divs using CSS display:none). Therefore, when then page loads, it takes ages ...
1
vote
1answer
123 views

How to speed up the image loading-Facebook api-iphone?

Here I am creating an iPhone app using facebook api. I have loaded the friends list and their profile pictures into a table view. But now its running slowly. I want to speed up the loading of the ...
1
vote
5answers
416 views

Load image to a tableView from URL iphone sdk

I have tableView and need to load image from URL. I have an array that contains the URLs of images and when the page loads I need to load all the images into the tableview. Note that, not from a ...
1
vote
2answers
255 views

Display a chart in a pop-up/modal on mouse click (jquery?) without loading chart first? (mvc3/razor)

I'm using the FileStreamResult (or FileResult) method to display a chart on a razor view page (from a Controller action) and this works as expected. However, I'm wondering if it's possible to display ...
1
vote
1answer
102 views

Intercepting image load request of the browser

I would like to know if there is a way to intercept the image loading requests of a browser and add some request headers expected by the server. The actual scenario is this. The web app sends an XHR ...
1
vote
1answer
47 views

GWT Fetch Image before Use

In a GWT application, i'm sure to use one image, but i want the application to load only when the image i'm going to use has already been loaded so that the user does not see the image partially ...
1
vote
1answer
60 views

(Py)Qt: problem with image downloading

guys I want to display some images with their captions in QTextEdit. I have a dictionary with captions and corresponding URLs. The problem is when I post a request with QNetworkAccessManager and wait ...
1
vote
2answers
102 views

ImageIcon loading getting slower and slower

In my java GUI application, I have some components that need to scale repeatedly, and I am doing this with the following code: Image newImage = myimage.getScaledInstance(width, height, ...
1
vote
2answers
296 views

Load Javascript external files before images on page

I have a javascript carousel gallery which defines the container my images sit in. Its necessary for the width and height of my images to be set to 100% so that that they are the size of the container ...
1
vote
3answers
1k views

Getting image width on image load fails on IE

I have a image resizer function that resize images proportional. On every image load a call this function with image and resize if its width or height is bigger than my max width and max height. I can ...
1
vote
3answers
558 views

How to preload images so they're loaded faster everywhere else on the page, and is it a good practice?

Here's the thing: I have a Google Map with a lot of markers in it. The problem is that the map loads, stays empty for a little while and only then markers are displayed. The markers are customized ...
0
votes
0answers
123 views

UIWebView: some images not loading

Good day. I have a UIWebView that loads a big article with 10+ images. HTML code is stored locally, images are loaded by UIWebView automatically. Sometimes web view won't load all of the images (for ...
0
votes
2answers
83 views

Change loading order of images already on page

Is there any way without AJAX of changing the loading order of images on a page? Or even a way to completely halt or pause loading of images already present? The use case is simple - I have a long ...
0
votes
1answer
230 views

GWT Image Loading( onLoad ) for Canvas

Without using any image loading library, I am loading and processing images like below: ImageGenerator(){ for(int i=0;i<100;i++){ ImageProcess( data-i , i ); } } ImageProcess( String ...
0
votes
2answers
96 views

Flash CS4: Actionscript 3.0 How to load images from a file

I currently can load images from a url but what is the script for loading and image from a file in my harddrive? ti.border = true ti.addEventListener(TextEvent.TEXT_INPUT, onInput); function ...
0
votes
2answers
262 views

Parallel image loading in a single class instance with AS3

My problem occurs when I try to load multiple images in one class in AS3. My code looks something like this: // Load image 1 var ldr1:Loader = new Loader(); ...
0
votes
2answers
813 views

asynchronus image loading in gridview

I'm loading images in gridviev asynchronusly.But my gridview displaying only a single image in the last cell of gridview.My adapter class and asynchronus class is given below, thanks. Adapter class: ...
0
votes
2answers
55 views

How does one load and split a massive image in flash?

How do you load an image that exceeds the 4096×4096 limitations of flash while splitting it? Note: This is a direct extension of another question.
0
votes
3answers
168 views

Flash CS4 Loader Class: Image Loads Initially, but Error Returned When Loading New Image

This is extremely difficult to explain in the title... First, here is my code in Actionscript: var digitalGallery:Loader = new Loader(); digitalGallery.x = 730 digitalGallery.y = 210 ...
0
votes
2answers
204 views

jQuery set DIV text

I'm having trouble with my code... I have a feeling its merely a careless error... but I cannot, for the life of me, find it. Here's my code: var now = new Date(); var url = ...
0
votes
2answers
264 views

Javascript Image Reloading; flickers

I have an image, out.jpg, that is updated more or less every second. I want the image displayed in an HTML file, and always up to date. My original solution was to reload the image every half second. ...
0
votes
0answers
77 views

Problem loading images from an ajax call

I am experiencing a problem when I load a considerable number of images in the browser. I have a website which behaves like this: Initially theres a fixed number of images shown. As we scroll down the ...
0
votes
1answer
74 views

IWebPreferences for each WebView

I am trying to disable image auto loading of some WebViews while I keep others enabled. However when I disable it for a WebView, all webviews stop loading image. Below is code I use: IWebPreferences ...
0
votes
1answer
409 views

Preload multiple images, then have them fade into view with jquery

For reference, the thing I need help with is located at: http://www.photographeller.com/portfolio What I'd like to do is when you click a portfolio section to open, before it opens have the images ...
0
votes
1answer
231 views

jquery: display loader until image exists in a specific folder

I want to display an image loader & keep checking until the image exists in a specific folder. The images requested are dynamically generated through a queue so I have no idea when the image ...
0
votes
3answers
109 views

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 ...
0
votes
1answer
405 views

Javascript: Adjusting image container height to dynamic image height after image load?

i load graphs via the following javascript function: function loadMCorCBGraph(self,surveyID,questionID,varID) { var img = new Image(); img.onload = function() { ...
0
votes
2answers
749 views

ASP.NET MVC - How do I load an image asynchronously?

On the home page of my site I want to display a lot of products which have images which are quite large. Currently the page is taking so long to load that it is actually timing out and the page fails ...
0
votes
4answers
192 views

File not found error with LoadImage() (Windows)

EDIT: I've added a few more lines of the program to the code snippet below. I have the following line of code in a program BITMAP BMP; HBITMAP hBMP; hBMP = (HBITMAP)LoadImage(GetModuleHandle(NULL), ...
0
votes
1answer
687 views

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 ...