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)

2
votes
1answer
3k views

google maps api v3 - how to display image thumbnails inside bubble?

I have some thumbnails with gps info that I want to pass to a javascript google maps instance. I can get the points to draw on the map, center and zoom to fit, and I can replace the markers with the ...
0
votes
2answers
514 views

Sending image with post

I want to fill some web-form with python script and send with POST-request. The problem is that form has fileuploading. I found this: poster for python. So, I came with FireBug at website with form ...
11
votes
3answers
6k views

Displaying image from the sqlite database using cursor in android

i want to display image in imageview from sqlite database using cursor. i used below code to retrieve image but i am not able to display image in imageview. Cursor c=this.db.query(TABLE_NAME, new ...
7
votes
4answers
33k views

Android Saving created bitmap to directory on sd card

I created a bitmap and now i want to save that bitmap to a directory somewhere. Can anyone show me how this is done. Thanks FileInputStream in; BufferedInputStream buf; try { ...
14
votes
4answers
18k views

How to scale a BufferedImage

Following the javadocs, I have tried to scale a BufferedImage without success here is my code: BufferedImage image = MatrixToImageWriter.getBufferedImage(encoded); Graphics2D grph = ...
34
votes
11answers
28k views

Disable dragging an image from an HTML page

I need to put an image in my page. I want to disable dragging of that image. I am trying lot of things but no help. Can somebody help me out ? I don't want to keep that image as a background-image ...
1
vote
3answers
8k views

how to add image for button in android?

How to add an image to appear in button in android rather than a text ??!
1
vote
2answers
1k views

Hover over image to reveal icon? Using opacity

I'm looking for a good tutorial on this effect: http://chrismahon.com/themes/wook/portfolio/ When you hover over a portfolio image, the opacity changes and a icon is revealed. If anyone could help ...
6
votes
3answers
9k views

how to show alternate image if source image is not found? (onerror working in IE but not in mozilla) [duplicate]

I need to show an alternate image in cell of table if source image is not found. Currently below code is used to do so. cell.innerHTML="<img height=40 width=40 ...
16
votes
7answers
33k views

How to resize images proportionally / keeping the aspect ratio?

I have images that will be quite big in dimension and I want to shrink them down with jQuery while keeping the proportions constrained, i.e. the same aspect ratio. Can someone point me to some code, ...
3
votes
4answers
252 views

Why would a site ever use </img> in HTML markup

I encountered this page https://www.google.com/accounts/ServiceLogin, a Google service login page that (beyond just omitting a doctype), contains 6 instances of </img> For example, <img ...
2
votes
2answers
2k views

How can I test if a URL is a valid image (in javascript)?

When submitting a form, I want to make sure a field is a valid image URL. I could make an AJAX endpoint on my server which CURLs the URL and parses the output with an image library, but that feels a ...
18
votes
7answers
23k views

Getting the “real” Facebook profile picture URL from graph API

Facebook graph API tells me I can get a profile picture of a user using http://graph.facebook.com/517267866/picture?type=large which works fine. However, when you type above URL into a browser, the ...
7
votes
3answers
4k views

VS2010 “An item with the same key has already been added”

I recently installed Visual Studio 2010 and copied and converted an old VS2005 solution to VS2010 When I edit this solution, if I try to change a control's .image property, VS2010 creates a message ...
5
votes
3answers
1k views

Library to resize image in .net

Is there a good library to resize an image in .NET with good quality? I'm not pleased with the quality of resized images that GDI+ produces. It does not matter if the library is free or at a cost.
3
votes
1answer
2k views

Where does WordPress store image meta data?

I've had a look in the database, but have not been able to find it. I'm talking about the caption, description etc. I'm doing a custom gallery and I need to access this information. So where does ...
3
votes
1answer
400 views

HTML Chrome Audit Specify Image Dimensions

I just started using the chrome developer tools for some basic html websites and I used the audit tool. I had two identical images, one with the height and width attribute, and one without. On the ...
0
votes
3answers
3k views

Use PHP to create thumbnails. (Cropped to square)

I have a php script im currently using that creates thumbnails based on a max width and height. However, I'd like it to always create square images and crop the images when needed. Here is what ...
6
votes
0answers
1k views

Displaying local images in the web browser control

I am writing a Windows Forms application and am creating a report for users to view in the webBrowser control. The problem is that it does not seem to display an image which is situated on my local ...
10
votes
3answers
5k views

Right align text in an image with imagettftext(), PHP

I am setting up dynamic forum signature images for my users and I want to be able to put their username on the image. I am able to do this just fine, but since usernames are different lengths and I ...
1
vote
1answer
2k views

J2ME: Convert transparent PNG image to grayscale

is there any possiblity in J2ME to convert an image (loaded from a png file with alpha) to a new transparent grayscale image? Until now I only got the rgb values, but not the alpha. Thanks. Edit: ...
31
votes
6answers
18k views

“img” elements: Block level element or inline element?

I've read somewhere that IMG elements behave like both. If correct, could someone please explain with examples?
12
votes
4answers
13k views

Change iPhone UISlider bar image

I'm using a UISlider in my app but I'd like to use a custom "look-and-feel" for it. I have changed the thumb to my own image but is there a way to change the bar also? I have a bar image I would ...
39
votes
3answers
56k views

android image button

How can i create a button with no text and an image centered horizontally ? I don't want to use an ImageButton because I want to define a different backgound image
14
votes
3answers
4k views

Converting a series of BufferedImages to a video in Java?

How would I convert an an array of BufferedImages into a video? I'm making a screen recorder. How would I compress the video afterward?
89
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?
9
votes
2answers
5k views

Read text from an image with PHP

I would like to try to read some of text from an image with PHP. So if I have an image like this: Can I some how extract the "Some text" into a string. All help and suggestions are appreciated.
1
vote
2answers
6k views

Most efficient way to GET images using jQuery AJAX

Reader's digest version: What is the most efficient way of requesting an image from a server and placing it into the DOM using AJAX (or AJAI, perhaps? : ) )? Here's the long version: Hello SO, I'm ...
11
votes
3answers
17k views

Add image to layout in ruby on rails

I would like to add an image in my template for my ruby on rails project where i currenly have the code <img src="../../../public/images/rss.jpg" alt="rss feed" /> in a the layout ...
7
votes
5answers
3k views

preload hidden CSS images

I'm working on a jquery based homepage with 5 or so hidden divs, each containing several background css images. The issue is that the browser doesn't load css images into the DOM until the ...
0
votes
6answers
2k views

Is there a way to designate multiple image sources in HTML/JavaScript?

Is there a way to tell the browser to look down a list of image URLs until it finds one that works? Pure HTML would be preferred, but I'm guessing JavaScript is probably necessary here (I'm already ...
4
votes
3answers
2k views

comparing images programmatically - lib or class [closed]

My objective is to supply 2 image files, and get a true/false response as to whether these 2 files could be the same (within an acceptable degree of certainty). I realize this question falls under ...
176
votes
8answers
160k views

Android: combining text & image on a Button or ImageButton

I'm trying to have an image (as the background) on a button and add dynamically, depending on what's happening during run-time, some text above/over the image. If I use ImageButton I don't even have ...
5
votes
4answers
9k views

Android - Issue with lazy loading images into a ListView

This is a very common scenario: displaying images in a ListView which have to be downloaded from the internet. Right now I have a custom subclass of ArrayAdapter which I use for the ListView. In my ...
29
votes
4answers
51k views

Qt jpg image display

I want to display .jpg image in an Qt UI. I checked it online and found http://doc.trolltech.com/4.2/widgets-imageviewer.html. I thought Graphics View will do the same, and also it has codec to ...
2
votes
2answers
884 views

Display Progressive JPEG on IE

Is it possible to make IE start displaying Progressive JPEG before the image has been completely downloaded?
4
votes
3answers
4k views

center image in a div too small for it?

So I have a div in my body that's a percentage width, and inside that a div with inline style as follows: text-align: center; margin-left: -15px; margin-right: -15px; overflow:hidden As you can ...
9
votes
8answers
6k views

JavaScript: Know when an image is fully loaded

If I have a beacon: <img src="http://example.com/beacon" /> I want a method to be called once the beacon request finishes. Something like: <script> $("img.beacon").load(function() ...
24
votes
7answers
15k views

Inputting a default image in case the src arribute of an html <img> is not valid?

Though I think it's not possible, it's always awesome to know what the SO Gurus would act if they were me. So, here's my question: Is there any way to render a default image in an HTML <img> ...
127
votes
3answers
105k 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 ...
1
vote
3answers
9k views

Save image in database? [duplicate]

Possible Duplicate: Storing Images in DB - Yea or Nay? Duplicate: http://stackoverflow.com/questions/766048/store-image-in-database-or-in-a-system-file ...
8
votes
1answer
6k views

A call to Bind must be assigned to a property of a control inside a template

I want to show a thumbnail image inside a gridview instead of the text. This is what I am trying: <asp:TemplateField HeaderText="Image" SortExpression="Image"> ...
158
votes
13answers
254k 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?
214
votes
14answers
124k 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 ...
82
votes
10answers
16k views

My images are blurry! Why isn't WPF's SnapsToDevicePixels working?

I'm using some Images in my WPF applcation. XAML: <Image Name="ImageOrderedList" Source="images/OrderedList.png" ToolTip="Ordered List" Margin="0,0,5,5" Width="20" ...
542
votes
16answers
238k 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, ...
25
votes
7answers
27k views

Lazy load images in UITableViewCell

I have some 50 custom cells in my UITableView. I want to display an image and a label in the cells where I get the images from URLs. I want to do a lazy load of images so the UI does not freeze up ...
409
votes
23answers
76k 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 ...
286
votes
30answers
198k 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 ...
295
votes
18answers
167k 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 ...

1 3 4 5 6 7 681