image

Should image data go in VCS?

We're having a spirited discussion about this at my workplace. We're talking about user uploaded images for a bunch of products, not images needed to display the basic site. I say "no way" but I'm curious what others think. Update: Just to clarify. These are customer supplied images for products that they are entering/modifying. ...

Insert Image into Excel - Java

Hi, I am working on a java web application where i have to show an image on excel file. i used the java file iopo to write the image to the excel file. Issue is when the user mail this to client the image does not show up Is there any way to embed the image into the excel file using java with/without using any external API. Thanks & ...

How can you make images resized with css look good in IE?

IE6 and IE7 don't scale images nicely in web pages when the images are scaled with css width/height or attribute width/height. I am not sure which algorithm it uses by default, but it's not good. Scaled images display aliasing artifacts when scaled in these browsers. ...

How would you recommend adding an image as a custom field in WordPress?

I need to add an image to each page in WordPress. I don't wish to insert it using the WYSIWYG editor, I just need the url as a custom field, which I later use in the template. I tried using the CFI plugin (Custom Field Images), and I hacked my way into getting it to work with the rest of my plugins, but then I moved the site to the prod...

Loading an image from resources in an unreferenced assembly

I have two silverlight assemblies, CaseManager.Applet and CaseManager.Applet.Sample. The Sample assembly has a reference to the base Applet assembly. The sample assembly has an embedded resource png image. The base applet assembly has a view xaml that I wish to display that image programmatically. In the sample assembly I have a bit of ...

How do upload images remotely to Drupal using the Image module?

Images can be uploaded through Drupal's frontend interface with the Image module. However, I'd like to be able to upload and create image nodes remotely by requesting a URL and passing the image as a parameter. I have the REST API module, which works fine, but I can't figure out what function I need to call in the backend to create the i...

Create thumbnail and reduce image size

I have very large images (jpg) and i want to write a csharp program to loop through the files and reduce the size of each image by 75%. I tried this: Image thumbNail = image.GetThumbnailImage(800, 600, null, new IntPtr()); but the file size is still very large. Is there anyway to create thumbnails and have the filesize be much small...

How do you read an image from the Categories table in the Northwind database?

In SQL Server 2005, how do you read an image from the Categories table in Northwind? I can upload my image to my own database and display it from there, but I can't display an image from Categories table in Northwind. Can someone please show me how to do this? ...

Identifying 2 same images using Java

Hi all I have a problem in my web crawler where I am trying to retrieve images from a particular website. Problem is that often I see images that are exactly same but different in URL i.e. their address. Is there any Java library or utility that can identify if 2 images are exactly same in their content (i.e. at pixel level). My inp...

How do I bind a Byte array to an Image in WPF with a value converter?

I'm trying to bind a Byte array from my databse to a WPF Image. My XAML: <Window.Resources> <local:BinaryImageConverter x:Key="imgConverter" /> </Window.Resources> ... <Image Source="{Binding Path=ImageData, Converter={StaticResource imgConverter}}" /> I've modified code published by Ryan Cromwell for a value converter: Class Bi...

Image is not coming in the crystal report using stored procedure

Hi, I have a webapplication in asp.net 2.0 on that application i am using crystal report to display image from oracle database. on that report i am using dataset xsd with storedprocedure to display data in crystal report. But the problem is when i am using stored procedure the image is not display in the report in case if i am us...

Can you use javascript to render an image stream?

The situation is that you have to work with an image API and you have to make a POST request to get an image stream that you want to display in the rest of your web page. I can make an ajax request to that service on page load using jQuery, but i just get a binary stream returned. Is there anyway that JavaScript can take that binary st...

Text on a image

Is it possible to dynamically place text on an image in php? And then send it to an rss feed? ...

Reading metadata from images in WPF

I'm aware that WPF allows you to use images that require WIC codecs to view (for the sake of argument, say a digital camera RAW file); however I can only see that it lets you show the image natively, but I can't see anyway of getting at the meta-data (for example, the exposure time). It obviously can be done, as Windows Explorer shows i...

An easy way (tool?) to compare images pixel for pixel in different formats?

Well I've written a basic lossless jpeg joiner thing in java now but I'd like to compare the files it produces with the original files. I can only compare so much in a hex editor, does anyone know of an easy way, software or java based (preferably software as I dont feel like any more coding for now!) that I can compare two images and p...

Javascript: Popup with movie from images in main window

Hi everyone, I'm a mostly-newbie Javascript'er and I'm trying it on a webpage which, upon pressing a button, pops up a window which shows a cyclic "movie" with the images from the main window. From what I've tried Googling around I can sense I'm pretty close, but something is eluding me. I know what follows results in two separate que...

Images in Latex - Whats the Solution?

I've faced so many problems using images in Latex. See for example, another question at http://stackoverflow.com/questions/382590/latex-using-eps-images-builds-slowly What tools do you use to make figures for inclusion into latex? Is there a simple solution to this? Some scenarios described below: I want to add a screenshot into latex...

Django - uploaded images can not be retrieved

Hello! I am exploring file/images uploads in Django. I have a model with Photo class which has thumb ImageField. I uploaded thumb with admin panel and I made template which just gives <img src='{{photo.thumb.url}}' />. Unfortunately I don't get any images and when I try to get direct link it says "page not found". It seems that django e...

replace image through css

okay backstory. I'm writing code in Stylish, a firefox plugin, to change the image that is shown up. the image property doesn't have a div tag, so i have to use this: img[src*="s_dschjungelplanet"]{ ########## } So this will replace "s_dschjungelplanet" anywhere in the page, in a img src. so my main problem is that im not sure HOW ...

Adding an image to a panel using Java AWT

I posted earlier about having a really messed up panel but fixed that by simply changing the layout (thank you to Charlie Martin for helping me). Now, I'm trying to add an image to a panel so I can add that panel to the frame. This is part of the class that I am messing around with. http://friendpaste.com/13zibFC4oVxCbm83500KVj This is...