image

Firefox and IE rendering same image differently!

This is an exact duplicate of: http://stackoverflow.com/questions/130161/ie6-issues-with-transparent-pngs Firefox: IE 6: The background for the image is transparent. Yet IE seems to screw it up. Any ideas? ...

Editable Div Element

Is it possible to have an editable div element that can only contain text and images. I understand that you can use the rich controls like TinyMCE and jWYSIWYG however I do not require all this functionality and want something lightweight. Basically all I want is a plain text editable element where I can also add various images such as...

Where can I get images or full Windows OS's to run in Virtual Machines

I want to test my software on different Windows Operating Systems. I plan to do it using Virtual Machine software, either VMWare or Microsoft Virtual PC. I would like to be able to test Windows 7, Windows Vista, Windows XP and Windows 98 in both 32 and 64 bit flavors, and possibly at differing service pack levels. Where can I get the I...

Storing a large number of images

I'm thinking about developing my own PHP based gallery for storing lots of pictures, maybe in the tens of thousands. At the database I'll point to the url of the image, but here's the problem: I know is impractical to have all of them sitting at the same directory in the server as it would slow access to a crawl, so, how would you store...

Pulling IMG Into PHP File

I have a PHP file and an image in the same directory. How could I get the PHP file to set it's headers as jpeg and "pull" the image into it. So if I went to file.php it would show the image. If I rewrite file.php to file_created.jpg and it needs to work. ...

best way to show several images on a winform in c#

best way to show several images on a winform in c#? Datagrid? ...

Can anyone recommend an Image Gallery with a good programming API?

What is the best solution/API for this? On my site users upload image, tag then and more. Instead of displaying the normal page where it shows the image and info (date, desc, user comments, etc) I want it to go to the next/prev image. Preferably with preloading. This code could be done either in flash or javascript, but I would need a wa...

How to rotate 4 images, fading between each one?

I have 4 images, which I want to fade between each other in a loop. I have something like the following: <img src="/images/image-1.jpg" id="featureImg1" /> <img src="/images/image-2.jpg" id="featureImg2" style="display:none;" /> <img src="/images/image-3.jpg" id="featureImg3" style="display:none;" /> <img src="/images/image-4.jpg" id="f...

How to dynamically create an image with a specified number on it?

I have a place holder image saying something like: Your rating is: [rating here] My PHP code is supposed to dynamically insert the rating number where there is a blank space left out for it on the placeholder image. How can I do that? ...

Template engine for image generation

Does anyone know of any templating engines for generating images, preferably Java-based? What I have in mind is something like StringTemplate where a you have a set of parameterized templates that render to an image (or SVG, etc) rather than text. It needs to be more general purpose than "insert text here to generate a sign". Primitiv...

cross platform embeddable large image viewer

I'm looking for a system with which can embed a zoomable image in a web page. This is for an educational site and the images are x-ray photographs - so we'd like to display the image full size then allow the user to zoom in to see the detail. The final images won't be that large - I think 2048 square should cover it - but large enough ...

Shell script for adjusting image size

Is there a way to adjust all image sizes in a directory? If I set the max size to 800x600 it will make larger ones smaller and leave smaller ones at their original size. Has anyone got a solution for that? Any help would really be appreciated! ...

Silverlight: Transparent image on button

I would like to use a transparent png file on a silverlight button. In addition I would like the button itself to be transparent so the background (behind the button) shows through. I find that if I set the opacity of the button it also affects the image. I don't want the entire image to be transparent - just the transparent parts of it ...

Find an Image within an Image

I am looking for the best way to detect an image within another image. I have a small image and would like to find the location that it appears within a larger image - which will actually be screen captures. Conceptually, it is like a 'Where's Waldo?' sort of search in the larger image. Are there any efficient/quick ways to accomplis...

How to create transparent images in Java ME

How can I create an editable but transparent image in Java ME? ...

Quartz 2D/OpenGLES geometric distortions on images (preferrably using CGImage)

What is the preferred method for implementing such geometric distortions as pinch/fisheye/etc. using the iPhone SDK? I know that the Core Image library for OSX has all these types of filters built in, but not for the iPhone SDK. I can create a displacement map at a specific location and radius given the original source bitmap data, but...

Get full quality 16 x 16 icon using Icon.ExtractAssociatedIcon and ImageList

Following the directions at this question, I have some code running to extract icons from files and display them in a ListView set to details mode. I want to icons to display at 16 x 16, but when I have the ImageList size set to that the icons that come out look very weird (not sure how to describe it - see attached screenshot). I've tr...

Merging two images in C#/.NET

Simple idea: I have two images that I want to merge, one is 500x500 that is transparent in the middle the other one is 150x150. Basic idea is this: Create an empty canvas that is 500x500, position the 150x150 image in the middle of the empty canvas and then copy the 500x500 image over so that the transparent middle of it allows the 150x...

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

Our environment is a LAMP stack. I'm wondering what libraries/extensions etc. would be required to convert a portion of a PDF document into an image file? Most PHP PDF libraries that I have found center around creating PDF documents, but is there a simple way to render a document to an image format suitable for displaying on a web page...

How can I make a thumbnail <img> show a full size image when clicked?

Normally you have an image tage with the src as the source of the image and the alt as the alternative text: <img src="image1.gif" alt="Image 1" /> Can you have something like is?: <img src="image1.gif" alt="image2.gif" /> So that means the src has an image source and the alt also has an image source. What I want to do is pul...