image

Change a WPF image during a stroryboard

I was looking for a way to change an Image during a storyboard, or more specifically, change the Source property of the image to point to a new image resource. There seems to be a StringAnimationUsingKeyFrames and a DiscreteStringKeyFrame but this does not work (as far as I can tell) since the Source property of the Image is of type Imag...

drawing an image with RGB data in matlab

I have a text file containing RGB data for an image, how can I draw the image using this data in matlab? data sample : Red Green Blue 80 97 117 83 100 120 74 91 111 81 96 115 81 96 115 77 90 107 84 97 114 78 91 108 79 95 110 91 104 120 94 108 121 ...

Free Image Hosting with Open API

Does anyone know if there is a free image hosting website which has open API? Thanks ...

How to implement face recognition in an image in .net 3.5?

Hi all, I need to implement face recognition like in orkut album. In my website when a user uploads a photo and checks the photo in album I need to implement the feature and place rectangles over the faces in photo like in orkut album like in this link. Please help me to implement this. Thanks in advance. ...

How to download an image with PHP?

Suppose the url of the image is here: http://sstatic.net/so/img/logo.png How to download it with PHP? ...

Convert Txt To JPG

Hey I am using libcurl to download file. I download the image (JPG), but I can only save it as txt file. Is there any methods that could change data (string) to JPG and save it ? Thanks Edit: How can I convert this stream ? Bitmap b = new Bitmap(data); b.Save("picture.jpg", b); <-- this gives me error ...

Using Silverlight to display images from a network server.

I need to display images from a network server that generates tiff images. I would like to use silverlight 3 to display these images. I would like to stream the jpeg to the client. Is this possible if the images "live" on a server other than the web server? ...

Android Get Local File Bytes

I'm trying to get a byte array of an image saved locally on the phone. I'm using the code: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.upload); // Look in the Device startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaSto...

C# Forms Picturebox to show a solid color instead of an image

Im making a little app to display the pictures of guests as they scan their cards. But i want to to display blank green or red (green if the guest exists without a photo and red if they dont exist) But i cant figure out how to create a blank colour image. Bitmap bmRed = new Bitmap(imgbox.Width, imgbox.Height, PixelFormat.Format24bppRgb...

Image transfer from server to client through bluetooth in j2me

How to transfer text and an image from server(pc) to clients(mobiles) through bluetooth in j2me. ...

Unwanted padding on link images in IE only

Hi, I hope someone can help. Within my container DIV I have 3 images which I require to sit side by side in one row. This is indeed the case in every other browser except, annoyingly, as usual, in IE6, IE7 and IE8 (groan). Each of the images is wrapped in an tag as follows:- <div id="images"> <a href="images/image01.jpg" rel="milkb...

TabControl > TabItem.Header > Image Source with IsSelected Property

How do I change an image source within my TabControl > TabItem > TabItem.Header using triggers? Here's what I have so far: <TabControl Name="tabctlMainTab" Style="{StaticResource PrimaryTabControl}" SelectionChanged="MainTab_SelectionChanged" Background="Transparent"> <TabIte...

Full width image carousel that can center selected image and partially show other images in gallery

Hi, I've looked for a plugin that will do this and the closest I could find was CarouselLite but it doesn't really do what I am trying to get. Most of other libraries I could find don't like 100% width or hide inactive images or don't center the active image scrolling it to the very left of the gallery div. I'm not really good at javasc...

Android: getting image locations

Hi, am looking for a way to find images on the SD card, or at least images taken by the camera. The ideal solution would be getting a collection of file paths or URIs for the images. I guessing you can do this through the MediaStore I just can't figure out how. Thank you ...

adding pictures in certain places in a richtextbox in C#

Alright, Question #1: well i have a richtextbox, and id like to add emotions to it, so for instance, if ":)" was in the textbox, id want the picture of a smiley face in its place. Question #2: i have a normal textbox, NOT a richtextbox, and id like to add some sort of spell check to it. that highlights the mis-spelt words as you type ...

Form Button with custom image and text

Solved! Thanks guys! Okay, in a form I have a button 170x60 with a custom image for the non-pressed and pressed states. What I can't seem to do is get There to be text in the button. I really want to avoid having to edit the image and write text to it directly. Right now I'm using <input type="image" src="img/button_normal.png" width="...

imageview web imageresource.

I want to read image from web ex. http://www.abc.com/image1.jpg and dynamic set to imageview component. how can i do it? any good tutorial ?? Thanks in advance. ...

ImageCreateFromJPEG PHP Another image

How do you add another image to a image in php the itme i want to add is images/rank1.jpg? $rImg = ImageCreateFromJPEG("images/card/test.jpg"); $cor = imagecolorallocate($rImg, 255, 255, 255); imagestring($rImg,5,60,3,$username,$cor); ...

How can I write an Exif header without recompressing the JPEG, in .NET?

I have a JPEG image that I want to set an Exif header to (particularly, Author). In .NET, I can do this relatively easy using GetPropertyItem and SetPropertyItem, but in order for that change to be persisted to the actual .JPG file, I need to Save it, which basically recompresses the image. Is there any way to do this without recompres...

Capture image from GPU

Is there a way to capture a screenshot directly from the GPU without the need to actually display the screen on the monitor? I check lots of posts here, but only found answers for capturing screen images remotely and so forth. ...