image

What is the best format to store images in a database?

What is the best format to store images in a database, such as binary,base64...etc, for optimal speed/size. ...

jQuery - Dynamically slide up Div over an image when mouse over it.

Hi, I need to dynamically show a div over an image when mouse over. I need to do this for a lot of images so it needs to be dynamic. I looked at the code from www.foliostars.net : jQuery.fn.masque = function(classe) { $(this).hover(function(){ $(this).find(classe).stop().animate({height:'40px',opacity: '0.9'},400); },function () { $(t...

How to set background image in Java?

I am developing a simple platform game using Java using BlueJ as the IDE. Right now I have player/enemy sprites, platforms and other items in the game drawn using polygons and simple shapes. Eventually I hope to replace them with actual images. For now I would like to know what is the simplest solution to setting an image (either URL or...

How do you find the paths of linked images in Adobe Illustrator 9?

I have an Illustrator file with linked images. I'd actually like to instead embed the images. I first have to know which files they are. How do I find out? I'm using Illustrator 9. ...

jQuery UI images css

Can I get the images used in the self created theme direct or do I have to cut them out from the "\jquery-ui-themeroller\theme\images\ui-icons_228ef1_256x240.png" for example? ...

CSS opacity within an image

What's the best way (if any) to make the inside box transparent so the image can be seen with no opacity (clear image) and the rest of the outer box opaque. So far this is what I'm doing: <style> #a { background-color: black; float: left; } #b { opacity : 0.4; filter: alpha(opacity=40); } #div { position:absolute; h...

Statistics or resources: which gets disabled first (more often than others)? Images or Javascript?

I am creating a new website and this question came up, statistically, including all browsers (phone browsers as well), which gets disabled more often? Images, Javascript, or CSS? Reason Im looking for an answer is to design the image-replacement technique that covers the most recurrung scenarios. ...

Is putting a php script in the src of the image tag slower than normal and by how much?

If I put this tag in my HTML: <img src="http://server/imageHandler.php?image=someImage.jpg" /> instead of <img src="http://server/images/someImage.jpg" /> and use the imageHandler.php script to read the image file, output expire headers and print the image data, i expect it to be slower. Is this a viable way to manipulate image he...

Jython, ImageInfo

Hi, I trying to use ImageInfo and Jython to get information from a image on my harddrive. I have imported the module fine but keep getting this error: TypeError: setInput(): expected 2 args; got 1 And this is the code I am trying to use: filename = "C:\\image.jpg" img = ImageInfo.setInput(filename) Could anyone point out what I a...

reasonable PHP memory_limit for image resize

I want to enable users on my site to upload images to their accounts. The images get resized into 4 different sizes required across the site. I have been using Pear Image_Transform but I kept getting "bytes exhausted" fatal errors on certain types of jpgs (all files tried under 2mb). So I moved to a dedicated server with Pentium Dual-C...

PHP to store images in mysql or not?

I have built a small web application in PHP where users must first log in. Once they have logged in, I intend on showing a small thumbnail as part of their "profile". I will have to ensure the image is below a particular size to conserve space, or ensure it is a particular resolution, or both, or even perhaps use something like image ma...

SQL Images -> byte arrays

So I am importing some images stored in SQL image columns, and I need to change them to Byte arrays since I store my images as varbinary(max) and recreate them. I would LOVE it if there was a program to do this, or a really easy way since I don't have a ton of time. Any ideas out there? ...

Lazy load images in UITableViewCell

Hi 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 while the images are being loaded. I tried getting the images in separate threads but I have to load each image every time a cell becomes...

Best image format for uncompressed textures?

I am in the process of selecting an image format that will be used as the storage format for all in-house textures. The format will be used as a source format from which compressed textures for different platforms and configurations will be generated, and so needs to cover all possible texture types (2D, cube, volymetric, varying number ...

What's the best web image search API?

What's the best image search API for general image search (eg. find pictures of potatoes, paris hilton, or scarface), available for remote invocation from a server (ie. not in-browser javascript)? The Yahoo API is nicely setup and well documented, is easy to use, and includes image thumbnails. This looks like the best candidate so far...

Where can I find an image watermark control for Delphi?

Is there a good image watermark control for Delphi? It would be nice if it could receive both text and images to insert in a base photo. I would also prefer it was free. ...

Image editor component for use in WPF rich client application

Do you know of a simple .NET component which can be used in a WPF client application with these features: load images from file or clipboard into canvas, scaling and moving, define canvas background color, export canvas as new image. Thx in advance, Prensen ...

firefoxs renders thin grey lines at content box edges of a png at certain widths - why?

When firefox (3.0.6) renders a png image at certain widths (e.g., 50%), a thin grey line is shown along the left and top edges of the content box. The line disappears at other widths (e.g., 70%). Furthermore, the line doesn't seem to be present in the original image (using gimp to inspect the image). The phenomenon occurs in the absence...

How to copy an animated gif image using C#?

Is there a method to create a copy of an animated gif image using C#? What I want is to generated a copy of a given gif image using the height and width parameters that the user provides. I have tried for a couple of hours to accomplish this but the resulting image does not preserve the original animations. Thanks in advance. ...

What are the advantages of using an imageless button?

The discussion on this answer to the question "How can I use Google's new imageless button?" Has prompted this question. Google seems to think that going imageless is good for some reason, but from the comments cited, I fail to see the advantage. Is it worth it to send dozens of lines of HTML and who knows how much CSS to render these...