image

BufferedImage & ColorModel in Java

I am using a image processing library in java to manipulate images.The first step I do is I read an image and create a java.awt.Image.BufferedImage object. I do it in this way, BufferedImage sourceImage = ImageIO.read( new File( filePath ) ); The above code creates a BufferedImage ojbect with a DirectColorModel: rmask=ff0000 gmask=ff0...

how to create a 2D grid of images in wpf that is scrollable vertically and horizontally?

I want to create a grid of images with say 10 images in a row, 10 in the next row and so on.. Also I want to use virtualizing stack panel to render only visible images. Whenever I try to use a listbox in a stackpanel I get either a horizontal or vertical alignment. How should I go about it? ...

Make an image transparent in IE to show non-transparent background

Hi, I'm trying to get this thing to work in IE (any version - works in FF, Opera, Safari, Chrome ...): I have a DIV with a background-image. The DIV also contains an image that should be transparent onMouseOver. The expected behaviour now is that the DIV-background would shine through the transparent image (which it does in all browse...

How to merge two icons together? (overlay one icon on top of another)

I've got two 16x16 RGB/A .ICO icon files, each loaded into a separate System.Drawing.Icon object. How would you create a new Icon object containing the merge of the two icons (one overlaid on top of the other)? Edit: I probably wasn't too clear, I don't want to blend two images into each other, I want to overlay one icon on top of an...

Problem with loading a PNG image in JApplet.

Hi there, I'm trying to load a PNG image from JAR file when running JApplet. The file is, I think, loaded properly - there are no errors. However it is not displayed. img.png is placed in the same directory as MainClass.java file. Here is the code: InputStream imageURL = this.getClass().getResourceAsStream("img.png" ); byte[] bytes = ...

Attaching blob images to mail

I am attaching blob image to html mail template and then sending mail to user but in gmail that image is not display and when i saw source of that image then I found that it is adding tag in that image source.So how can I avoid it can anybody help me. ...

PHP: upload image max 150x150..

How do i make a limit for the size of the image not SIZE but i mean how big it is.. so max 150x150? $image=$_FILES['image']['name']; if ($image) { $filename = stripslashes($_FILES['image']['name']); $extension = getExtension($filename); $extension = strtolower($extension); if (($extension != "jpg") && ($extension != "jpe...

Scale transform in xaml (in a controltemplate) on a button to perform a "zoom"

Hi all, I've got a button with an image in it and it's being styled by the following: <ControlTemplate x:Key="IconButton" TargetType="Button"> <Border> <ContentPresenter Height="80" Width="80" /> </Border> <ControlTemplate.Triggers> <EventTrigger RoutedEvent="Button.Cl...

No events are fired from an imagebrush via ImageOpened/ImageFailed

A canvas is received from the server, and an image brush is extracted from the canvas via searching for a bunch of pathes. In summary, Canvas -> Path -> Path.Fill -> ImageBrush. Now, I want to take a snapshot of the ImageBrush using WriteableBitmap when it is loaded and here is what I did var imageBrushes = VisualTreeUtility.FindVisualC...

Semi-transparent PNG Image on transparent Form

Hello, I have a problem dealing with transparent images on transparent Forms. I have been trying and looking for a solution but nothing useful came up. The problem is: I have a Form, this Form has a Panel and the Panel has a PictureBox. Form and Panel are transparent. Now, if the image of the PictureBox has no semi-transparent it work...

How to Cache image when src is some action which returns image?

There are lots of questions about how to force the browser to cache or not to cache any image. But, I am facing slightly different situation. In several places of my web page, I am using following code for the images. <img title="<%= Html.Encode(Model.title)%>" src="<%= Url.Action(MVC.FrontEnd.Actions.RetrieveImage(Model.SystemId))%>...

image in div doesn't display anything

i'm trying to insert an image in a div container using css and html, but it doesn't display any image. html code: <div id="wrapper"> <div id="quoteContainer"> <span class="start_img"></span> </div> </div> css: #quoteContainer { color: #898989; background:#F9F9F9; border: solid 1px #ddd; border-radius:10px; -mo...

Ignore mouse interaction on transparent parts in image and assign it to the image below

i have two tables with images that parts of them are transparent and i want to ignore mouse interactions (especially clicking) on these parts and assign the click to the image in the other table that below. (i hope you understand because english is not my native language.) thanks.. ...

BlackBerry - How to send Email with embedded Image from Application?

What is the possible way of sending Email with an embedded Image from Application? ...

Storing pictures per user on website (php)

Users of the website need to able to store images in their "area" , should I store these in the database directly or create a directory for each user. Or should I just have a single directory for all images and in the database store a list of images that each user owns? I'm looking for the most effecient way, which I think is a folder fo...

PHP update kerning problem with imagettftext() and imagefttext() functions

Hello, Our dev server was recently upgraded to PHP v5.2.13. With that upgrade we have found that our png images are having kerning (letter spacing) problems. We've tried numerous fonts and haven't found a solution yet. We are creating images using the GD library and writing text to the images using font files and the imagettftext() ...

Save a UIImageView using NSUSerDefaults

How do you save an Image using NSUSerDefaults The main image is set in IB, the secondary image is set here - (IBAction) changeImage { CATransition *fadeThing = [CATransition animation]; fadeThing.type = kCATransitionFade; fadeThing.subtype = kCATransitionFade; fadeThing.duration = 1; [CATransaction begin]; [background.layer ad...

Get remote image dimensions

Given a URL to an image (and not the image itself), what's the most efficient of getting it's dimensions? I would like to change the height and width attributes in the image tag (<img>) if it is greater than 200x200. However, if it's smaller than that, then I'd like to keep the size as it is. (I'm using ASP.NET/C#) ...

Showing image in place of flash to iphones and ipads

Edited // I want to detect flash support (not user string agent) on load and if the visitor is viewing on a device that does not support flash (changed from iPhone or iPad) I want to display this code: <?php get_header(); ?> <div class="flash"> <img src="/wp-content/themes/iq-iphone/main-page-image.png"/> </div> If it's a regular vi...

android: where are the image resources allocated?

Is there anyway to get the actual images used in resources? e.g., I want the two png files in CheckBox in starstyle? Which directory does andorid keep them? ...