image

Background Images CSS & Text

I want to update my site having text in the front and using background images in the back of my webpages (I want to do this for SEO optimization), what is the best html/css way to do this? The current way I am doing this is not rendering correctly in IE8, but IS rendering properly in Firefox: (Try this link in both IE8 and in Firefox) ...

Image Recognition to drive test automation

Are there any tools out there which uses Image Recognition(searching, comparing, validating images) as base for automating and testing GUI software.I know ranorex supports it. Are there any better tools?Are there any gotchas in using Image Recognition to drive test automation? ...

Is there anyway to expand image on hover like bing image search???

I have a search result which includes images. When the user hover over the image, the image should expand like we see in bing http://www.bing.com/images/search?q=world&go=&form=QBIR&qs=n . Please help. ...

iPhone Style Buttons

Is there a standard/accepted way of making image buttons the "iPhone" style? i.e. with the gloss highlight and rounded corners. ...

HTML/CSS: Table cell with image rendered too large in IE

I have the following simple table to reproduce the issue: <TABLE> <TR> <TD style="border: black solid 1px; width:24px; height:68px; margin:0px; padding:0px" > <IMG style="width: 24px; height: 68px; margin:0px; padding:0px; border:none" src="Image24x68.png"> </TD> </TR> </TABLE> The image is actually 24x8...

Can I use Matrix Vision frame grabbers with Matlab?

Hello, I am trying to aquire image using a camera connected to the Matrix Vision frame grabber in Matlab. However, when I type imaqhwinfo, I see the installed adaptors as 'coreco' and 'winvideo'. When I checked the device info, it says that that are no devices installed to the adaptor. The Matrix Vision frame grabber and camera has alrea...

How do I serve image with Perl with some security and least resources?

I found some posts related here but, nothing right on.. I need to serve up an image (humm) "correctly" and using as little resources as possible. I was working on a sub (below) but, is not too resource friendly just by the fact I use CGI. That is just my assumption though. I am a Perl newbie but, I like it better than php. The query wo...

Embed Image into own file

Hello, :) I have edited this question to make it easier to understand. I have an image file and I have to store the image data into an existing file in binary. And when that file gets opened in my program again, that binary data should be somehow read and that image displayed inside a picturebox. How would I go about doing this in C#? ...

How to use i_view32.exe (IrfanView) to resize image programmatically?

Hi Folks, I am looking for a programmatic way to batch resize images from a folder using irfanview command line tool (i_view.exe) The command works in dos command prompt. But when I try to creare a .NET C# console app to run i_view32.exe as a process, I get Win#2 Exception. Any clue how can I programmatically use irfanview to manipulat...

How do I change an image on hover over in WPF?

Maybe I am missing something really simple but a Google search returned no usefull results when searching on how to change an image on when i hover over the image. All i have so far is :| ...

Jquery - when a link is hovered, switch an image in a seperate DIV

Hi, I am new to Jquery and am having problems getting the following working. I have a web page with two columns. In the left column is an unordered list of links. In the right column is a div. What I want to do is have the div in the right column, change its picture when a user hovers over a link in the left column eg. User hov...

Silverlight Dynamic Image Loading Problem

Hi guys, I am creating a FlippingBook Silverlight application and I have run into a snag that I cannot seem to solve. The problem is with Asyncrously loaded Images. I have written a class that loads an image from a webaddress and stores it in a BitmapImage object. I bind to this image object to the Image Source on the silverlight imag...

How to check dimensions of all images in a directory using python?

I need to check the dimensions of images in a directory. Currently it has ~700 images. I just need to check the sizes, and if the size does not match a given dimension, it will be moved to a different folder. How do I get started? ...

Serve dynamic generated images using restlet

I have searched online for a while and almost all the questions regarding image serving using restlet are about static images. What I want to do is to serve dynamic generated image from restlet. I have tried serving static images using restlet, it's working. Also, I can successfully generate a dynamic image and store them in a local fo...

Multidirectional Image Navigation control in .NET / Windows Forms

I have a Matrix of images like this: 1 2 3 4 5 6 7 8 9 10 1 x 3 4 5 x 7 x 9 10 x x x x x x 7 8 9 x …where "x" means no image. I'm looking for a flexible .NET component that will allow me to have a UI to browse the images and move in the four possible directions: Right, Left, Up and Down. Does anybody know of something like this? ...

Daily image/link rotation javascript question

I have this daily image rotation script, which works great. I need the images to be clickable though. Any help is appreciated. <!-- Begin today = new Date(); day = today.getDay(); arday = new Array ("http://www.magnatexpumps.com/imagesnew/featured/featuredProduct_3575.jpg", "http://www.magnatexpumps.com/imagesnew/featured/featuredPro...

py2exe'd version of GTK app can't read png files

I'm working on making a py2exe version of my app. Py2exe fails at copying some modules in. My original app loads .png files fine, but the exe version does not: Traceback (most recent call last): File "app.py", line 1, in <module> from gui.main import run File "gui\main.pyc", line 14, in <module> File "gui\controllers.pyc", li...

Wicket Dynamic Image URL

Short question: I need to turn a dynamic image pulled from a database into a URL without adding a component to the displaying page (such as using a NonCachingImage) using Wicket. The perfect solution (that I've implemented in other Frameworks) is simply to create a page that takes the image ID as a url parameter and renders the image to...

Javascript Array Pre-load

I have this small javascript code and that makes a manual slideshow, but it requires every image to be downloaded before displaying. Could anyone please modify my code so that it preloads all the images (in order) and eliminates that annoyance. JS Code: var pos = 0; var imgs = new Array('1.png', '2.png', '3.png'); document.write("<im...

Get all images url from string

Possible Duplicate: How to extract img src, title and alt from html using php? Hi, I have found solution to get first image from string: preg_match('~<img[^>]*src\s?=\s?[\'"]([^\'"]*)~i',$string, $matches); But I can't manage to get all images from string. One more thing... If image contains alternative text (alt attribute) h...