image

Creating a photo collage image as attached using PHP from several images

How can i create a collage from a large number of images as per below using PHP scripts? I am also looking at creating different sizes A0, A1, A2 sized images depending on the number of pictures used in the collage. Thanks ...

Make an <img> tag extend past the <body> tag in css

Hi all. I'm trying to develop a header area which expands past the usual 960px wide container, without using a background image, my reason for this is because an <img> tag would work better in my case. My problem is, if i place my image in the container, such as this code example: <style> #container { width: 960px; ma...

how to show image loading gif using jquery

can ny one suggest how to do show image loading gif when image is loading in runtime using jquery. ...

Java support for interlace png

Hi I'm searching for a java library (free or commercial with reasonable costs) that could handle progressive loading of interlaced images, ideally something that I could control the size manually : load X bytes, render, close the stream, reopen the stream, skip X bytes, load more bytes, render again, etc. I do not have too much prefere...

Loading Images in Windows Forms

Hi, Currently I am loading Images stored on a network shared drive as Image byte array and loading using the Image byte array. This takes quite some time to load. Is there any other better way to load images which are stored on another machine in the network? ...

Find links to images in HTML (incl. outside of common tags/attributes)

I'd like to find (using javascript) all of the references to image links on an HTML page. Since I'm also looking for image references that may not be displayed, or are in unknown attribute types, simply looking for image tags or src's etc. isn't enough. As such, I haven't yet found a simple method using an html parser to do this. Ha...

How to identify human like patterns in a webcam feed?

The camera is about 5 feet away form the subject and when I capture a frame, I need to be able to tell if the frame has a human in it or not. I have some complicated plans on implementing it, just wondering if any of you know an existing solution that I can use. ...

Image processing - one frame is washed out, other isn't. How to 'fix'?

I have the following 2 consequative, unaltered frames from a video: For some reason the camera made the 2nd much 'washed out' than the first. I want to make the 2nd look more like the 1st. In the video I'm trying to process, there are lots of cases like this, where the 'exposure' changes suddenly from one frame to the next. I am abl...

Embed images for use in email message using PHP?

I know how to embed an image into an email as an attachment, but that's not really what I want to do. What I want to do is embed an image into the message and use that within the body of the email message itself. Is it possible to do this or possibly reference an attached file somehow to be used in the message? Should I even worry about...

Tinting Towards or Away from a Hue By a Certain Percentage

I'm trying emulate the Tint Effect of Open XML. What it does is change the hue of pixels in an image by shifting the hue. It takes 2 parameters: 1) the hue (in degrees) and 2) the amt (the amount, a percentage). It is #2 that I'm having issues with. The spec states: Tint: Shifts effect color values either towards or away from hue by ...

Draw image from pixel data arrays

If I have an array of pixel data in JavaScript, is there a good way to display it on an HTML page? On recent versions of Safari and Firefox, I can make a <canvas> element and use putImageData to display the pixels, but ideally a solution could work on older versions as well and more importantly, work on Internet Explorer. Another solut...

disable onmouseout function when onclick event is activated

My code looks like this using Image Swap of Dreamweaver. <a href = "#"> <img src="images/leistungen.png" alt="leistungen" name="leistungen" width="162" height="38" id="leistungen" onclick="MM_swapImage('home','','images/home_orig.png','philosophie','', 'images/philosophie.png','kontakt','','images/kontakt.png','body_layout','','images/...

Get the Size of a CSS Background Image Using JavaScript?

Is it possible to use JavaScript to get the actual size (width and height in pixels) of a CSS referenced background image? ...

How to use jquery to create progress bar for loading an image?

I want to take size in bytes of image in page at the first load page, and then create a loading bar and show it loading similar preloader of flash. But I don't know if jQuery can take size in bytes of image or not. ...

WPF Image Mapping

Is there a way to draw/fit a simple Quadrilateral cut-out from an image onto a standard axis-aligned rectangle for screen display. (So that the cut-out will be distorted to fill the rectangle points). Seems to me it should be possible with an ImageBrush but I cannot quite see it. ...

how to download 1000 images from google image search

Hi all, is there anyone know how to download top 1000 images from google image search? I tried google ajax api but it return only 65 images :( Thanks for your help! ...

how to get the image source in javascript?

I want to compare if the chosen image equal to the desired image.. Here's the initial code but is not working function mouseOut(txt){ var imgClick, imgOrig; imgClick = 'images/'+txt+'_onclick.png'; imgOrig ='images/'+txt+'.png'; if(document.getElementById(txt).src == imgClick){return false;} else {document.getElementById(txt).src = im...

Can Android's WebView automatically resize huge images?

In some web browsers, huge images are automatically resized to fit the screen. Is it possible to do the same in an Android WebView? The web page just contains the image, maybe adding some JavaScript could do the trick? Anybody has already done this? Note: I don't know the size of the image in advance. ...

Image cropping in java

Hi All, I want to cut a particular shape of an image in java, for example an image which contains a man with white background, here I want to crop the man without the background. Don't want to make it as transparent image, want to cut with some coordinates. I think using the cropImageFilter we can only cut the rectangle region. Can anyo...

How to check whether the response returned from server is image or not in Android?

In my Android app I am calling a URL for fetching images and that URL is also fetched dynamically. Sometimes what happened is that the server returns the path of the image but actually there is no image so can we put some kind of validation. ...