The image tag is for questions related to the loading, formatting, saving, compression, and display of images. This tag should also be used for assistance using various image libraries.

learn more… | top users | synonyms (2)

544
votes
16answers
240k views

How do I do a lazy load of images in ListView

I am using a ListView to display some images and captions associated with those images. I am getting the images from the Internet. Is there a way to lazy load the images so while the text displays, ...
283
votes
30answers
199k views

Strange out of memory issue while loading an image to a Bitmap object

I have a list view with a couple of image buttons on each row. When you click the list row, it launches a new activity. I have had to build my own tabs because of an issue with the camera layout. The ...
296
votes
18answers
169k views

Preloading images with jQuery

I'm looking for a quick and easy way to preload images with JavaScript. I'm using jQuery if that's important. I saw this here (http://nettuts.com...): function complexLoad(config, fileNames) { for ...
23
votes
1answer
9k views

Swing: Obtain Image of JFrame

How do I obtain a java.awt.Image of a JFrame? I want to obtain a screen shot of a JFrame (for later use within my application). This is presently accomplished using the robot to take a screen shot ...
126
votes
3answers
106k views

Get image data in Javascript?

I have a regular HTML page with some images (just regular IMG HTML tags). I'd like to get their content, base64 encoded preferably, without the need to redownload the image (ie. it's already loaded by ...
64
votes
17answers
116k views

How to extract img src, title and alt from html using php?

I would like to create a page where all images which reside on my website are listed with title and alternative representation. I already wrote me a little program to find and load all HTML files, ...
129
votes
9answers
66k views

Image comparison - fast algorithm

I'm looking to create a base table of images and then compare any new images against that to determine if the new image is an exact (or close) duplicate of the of the base. For example: if you want ...
11
votes
3answers
8k views

Browser can't access/find relative resources like CSS, images and links when calling a Servlet which forwards to a JSP

I'm having trouble with loading CSS and images and creating links to other pages when I have a servlet forward to a JSP. Specifically, when I set my <welcome-file> to index.jsp, the CSS is being ...
91
votes
7answers
91k views

Get/pick an image from Android's built-in Gallery app programmatically

I am trying to open an image / picture in the Gallery built-in app from inside my application. I have a URI of the picture (the picture is located on the SD card). Do you have any suggestions?
43
votes
9answers
36k views

jQuery callback on image load (even when the image is cached)

I want to do: $("img").bind('load', function() { // do stuff }); But the load event doesn't fire when the image is loaded from cache. The jQuery docs suggest a plugin to fix this, but it ...
158
votes
13answers
256k views

How to get image size (height & width) using javascript?

Is there any javascript or jquery apis or methods to get the dimensions of an image on the page?
158
votes
13answers
59k views

Can an ASP.Net MVC controller return an Image?

Can I create a Controller that simply returns an image asset? I would like to route this logic through a controller, whenever a url such as the following is requested: ...
120
votes
8answers
191k views

Saving image from PHP URL using PHP

I need to save an image from a php URL to my PC. Let's say I have a page http://example.com/image.php holding a single "flower" image, nothing else. How can I save this image from URL with a new name ...
81
votes
7answers
46k views

How do I convert a PDF document to a preview image in PHP?

What libraries, extensions etc. would be required to render a portion of a PDF document to an image file? Most PHP PDF libraries that I have found center around creating PDF documents, but is there a ...
47
votes
2answers
51k views

Capture Image from Camera and Display in Activity

I want to write a module where on a click of a button the camera opens and I can click and capture an image. If I don't like the image I can delete it and click one more image and then select the ...
51
votes
11answers
65k views

Resizing an Image without losing any quality [closed]

I need to resize an image, but the image quality cannot be affected by this.
21
votes
6answers
2k views

Why does the JTable header not appear in the image?

I was offering advice on capturing an image of tabular data on Java API or Tool to convert tabular data into PNG image file - when the OP requested a code sample. Turns out to be harder than I ...
215
votes
14answers
125k views

Convert an image to grayscale in HTML/CSS

Is there a simple way to display a color bitmap in grayscale with just HTML/CSS? It doesn't need to be IE-compatible (and I imagine it won't be) -- if it works in FF3 and/or Sf3, that's good enough ...
84
votes
13answers
73k views

High Quality Image Scaling C#

I want to scale an image in C# with quality level as good as Photoshop does. Is there any C# image processing library available to do this thing?
5
votes
2answers
8k views

How to retrieve and display images from a database in a JSP page?

How can I retrieve and display images from a database in a JSP page?
77
votes
11answers
40k views

Formula to determine brightness of RGB color

I'm looking for some kind of formula or algorithm to determine the brightness of a color given the RGB values. I know it can't be as simple as adding the RGB values together and having higher sums be ...
136
votes
10answers
344k views

Java Swing: how to add an image to a JPanel?

I have a JPanel to which I'd like to add JPEG and PNG images that I generate on the fly. All the examples I've seen so far in the Swing Tutorials, specially in the Swing examples use ImageIcons. I'm ...
25
votes
2answers
30k views

display image from URL retrieved from ALAsset in iPhone

I am using a ALAsset Framework for accessing the files in the device's photo gallery. So far I am able to access the thumbnail and display it. I want to display the actual image in an image view but ...
23
votes
9answers
33k views

How to get the RGB values for a pixel on an image on the iphone

I am writing an iPhone application and need to essentially implement something equivalent to the 'eyedropper' tool in photoshop, where you can touch a point on the image and capture the RGB values for ...
9
votes
2answers
7k views

load the image from outside of webcontext in jsf

I need to display the image which is reside outside of webapps folder in web application using jsf <h:graphicimage> tag or html's <img> tag. How can I achieve that?
47
votes
11answers
38k views

Efficient JPEG Image Resizing in PHP

What's the most efficient way to resize large images in PHP? I'm currently using the GD function imagecopyresampled to take high resolution images, and cleanly resize them down to a size for web ...
59
votes
13answers
62k views

Android: Resize a large bitmap file to scaled output file

I have a large bitmap (say 3888x2592) in a file. Now, I want to resize that bitmap to 800x533 and save it to another file. I normally would scale the bitmap by calling Bitmap.createBitmap method but ...
7
votes
1answer
21k views

Image in Canvas with touch events

Seems simple, and yet I'm having problems with implementation. I want a canvas with image on screen including onTouch events. I have tried ImageView but I was not able to use canvas. I have tried ...
28
votes
5answers
2k views

Cut out image in shape of text

I need to cut out an image in the shape of the text in another image. I think it's best shown in images. This is a photo of a cat: and this is the text I wish to cut out: The resulting image ...
20
votes
2answers
8k views

Should setting an image src to data URL be available immediately?

Consider the following (fragile) JavaScript code: var img = new Image; img.src = "data:image/png;base64,..."; // Assume valid data // Danger(?) Attempting to use image immediately after setting src ...
39
votes
15answers
109k views

Capturing image from webcam in java?

How can I continuously capture images from a webcam? I want to experiment with object recognition (by maybe using java media framework). I was thinking of creating two threads one thread: Node ...
28
votes
8answers
12k views

Deleting a gallery image after camera intent photo taken

I know this has been asked in many different ways but I still can not seem to delete the gallery image from the default folder. I am saving the file to the SD card correctly and I can delete that file ...
48
votes
7answers
22k views

Image library for Python 3

What is python-3 using instead of PIL for manipulating Images?
28
votes
4answers
16k views

Is there a way to take a screenshot using Java and save it to some sort of image?

Simple as the title states: Can you use only Java commands to take a screenshot and save it? Or, do I need to use an OS specific program to take the screenshot and then grab it off the clipboard?
42
votes
8answers
24k views

Getting image dimensions without reading the entire file

Is there a cheap way to get the dimensions of an image (jpg, png, ...)? Preferably, I would like to achieve this using only the standard class library (because of hosting restrictions). I know that it ...
412
votes
23answers
77k views

When to use IMG vs. CSS background-image?

In what situations is it more appropriate to use an HTML IMG tag to display an image, as opposed to a CSS background-image, and vice-versa? Single-reason answers are welcome, but I'm hoping ...
28
votes
10answers
19k views

Image fingerprint to compare similarity of many images

I need to create fingerprints of many images (about 100.000 existing, 1000 new per day, RGB, JPEG, max size 800x800) to compare every image to every other image very fast. I can't use binary compare ...
24
votes
7answers
66k views

Using jQuery, Restricting File Size Before Uploading

On PHP, they have a way to restrict file size AFTER uploading, but not BEFORE uploading. I use the Malsup jQuery Form Plugin for my form posting, and it supports image file posting. I was wondering ...
12
votes
4answers
20k views

how to store Image as blob in Sqlite & how to retrieve it?

I want to store an image(from url) into a sqlite database. For that I use: db = new DataBase(getApplicationContext()); URL url = new URL("http://sree.cc/wp-content/uploads/schogini_team.png"); ...
10
votes
5answers
24k views

Determining image file size + dimensions via Javascript?

As part of a web app, once images have been downloaded and rendered on a web page, I need to determine an image's file size (kb) and resolution within the browser context (so I could, for example, ...
1
vote
3answers
590 views

o display an image

I want to display an image from the web to a panel in another Jframe at the click of a button but whenever I click the button first the image loads and during this time the current form potentially ...
22
votes
3answers
10k views

iPhone image stretching (skew)

How do I skew an image? For example, each corner has a CGPoint with coords - p1, p2, p3, p4. Then, I need to set - p4.x+=50, p4.y+=30. So this corner (p4) should be stretched in a 2D perspective and ...
40
votes
11answers
32k views

Convert web page to image [closed]

I wonder if there is any way to convert a web page (from any given URL) into an image? this is basically equivalent to taking a "screenshot" of the page after opening it. There is a method to do it ...
22
votes
4answers
11k views

Convert webpage to image from ASP.NET

I would like to create a function in C# that takes a specific webpage and coverts it to a JPG image from within ASP.NET. I don't want to do this via a third party or thumbnail service as I need the ...
9
votes
3answers
17k views

how do you pass images (bitmaps) between android activities using bundles?

Suppose I have an activity to select an image from the gallery, and retrieve it as a BitMap, just like the example: here Now, I want to pass this BitMap to be used in an ImageView for another ...
20
votes
12answers
34k views

Validate image from file in C#

I'm loading an image from a file, and I want to know how to validate the image before it is fully read from the file. string filePath = "image.jpg"; Image newImage = Image.FromFile(filePath); The ...
34
votes
4answers
34k views

Check if an image is loaded (no errors) in JavaScript

I'm using JavaScript with the jQuery library to manipulate image thumbnails contained in a unordered list. When the image is loaded it does one thing, when an error occurs it does something else. I'm ...
28
votes
4answers
10k views

Javascript: Cancel/Stop Image Requests

I have a website that makes heavy use of Ajax. Occasionally I need to load large image files on the page for the user. My question is, when these large image files are being download, is there a way ...
13
votes
4answers
11k views

Android - how to set the wallpaper image

Is it possible to set the android wallpaper image programatically? I'd like to create a service that downloads an image from the web and updates the home screen wallpaper periodically.
5
votes
3answers
2k views

Show an animated BG in Swing

An animated (cycling) GIF can be displayed in a JLabel or in HTML (in formatted text components like JEditorPane) and be seen to cycle. But to load an image to paint as the background of a container, ...

1 2 3 4 5 80