image

Detecting image equality at different resolutions

I'm trying to build a script to go through my original, high-res photos and replace the old, low-res ones I uploaded to Flickr before I had a pro account. For many of them I can just use Exif info such as date taken to determine a match. But some are really old, and either the original file didn't have Exif info, or it got clobbered by ...

filename and contenttype of upload image

how to get the name of the file and the content type of the image which we uploaded in mvc application please tell me its urgent thanks ritz ...

Pls modify this code for retrieving the image from sqldatabase

I am still suffering from retrieving an image from a SQL database. This is my final solution for inserting and retrieving an image from database. Here is all my code: GUI part: <div> <asp:Label ID="lblImage" runat="server" Text="Image"></asp:Label> &nbsp;&nbsp;&nbsp;&nbsp; <asp:FileUpload ID="imageUpload" runat="server" /> ...

image name and content type of the image

how to get the image name and content type in mvc application i am using the input type file control of Html on my page .please help me with useful answers. Thanks, ritz ...

How to import images into magento using an absolute path?

I tried importing product images into Magento using an absolute path, but it did not work. The image was not uploaded. For example, I tried importing "http://somewebsite.com/someimage.jpg". The image was not imported. (I listed the abosolute path on a csv doc and imported using a Profile on the Import/Export screen of the Magento Admi...

adjust list style image position

is there a way to adjust the position of list-style-image ? when i use padding for list items the image will stay at its position and wont move with padding... ...

Switching PictureBox Images C#

I'm trying to make a "checkbox" that has a custom check image. I need it to toggle between checked and unchecked when the user clicks the picturebox. I've tried the following code, and the first click shows the checked image fine, however a second click does nothing. Any ideas? private void pictureBox7_Click(object sender, EventArgs...

WPF - How to apply effect to a cropped image?

I have an image being clipped like so: <Image Width="45" Grid.Column="0" Source="{Binding Photo}" <Image.Clip> <RectangleGeometry Rect="0,0,45,55" RadiusX="8" RadiusY="8" /> </Image.Clip> </Image> How can I apply a drop shadow effect to it? UPDATE: As pointed out by Ray, the best solution is the one proposed by Anderson...

Why are some images rendering on IE6 and some are not?

the images are showing up in safari and firefox but not IE6. I have four images, two of them are showing up in IE6 and two are not. If it helps, they are being toggled with an if statement. suggestions? Here is an example of the code, there are four of these chunks: <div class="NavIcons"> <a href="h...

PHP script to parse directory, list all images and add class="last" to the last image in the directory

I'm able to parse through the directory and list all images with any of the functions below. I just need to insert a class="last" attribute into the img tag of the last element in the loop. Also, which of these functions works best for what I'm trying to do? Any help much appreciated! function get_images1() { $exts = 'jpg jpeg png gi...

Displaying same image multiple times at different locations in a web page using JavaScript or CSS

I’m looking to create a web page with 6 coupons on it, two per line in a web space of 1275 X 1650. Each coupon space will consist of a different image. The problem is I will be creating 20 such web pages that will have these coupons on them. Now some of the same images will appear in different locations/positions on the various web pages...

How to split an animated gif in .net?

How do you split an animated gif into its component parts in .net? Specifically i want to load them into Image(s) (System.Drawing.Image) in memory. ====================== Based on SLaks' answer i now have this public static IEnumerable<Bitmap> GetImages(Stream stream) { using (var gifImage = Image.FromStream(stream)) { var dimens...

What are some options to store images securely other than storing on database?

Typically file servers are used to store images for a web application. For more security and control you'd go for storing images in database. But this proves to be complex and slow. Are there other mainstream options available other than db/file server, to store images securely with user permissions, etc. Edit: I'm deployed on amazon c...

Trying to use Mapi MapiSendMail to send an email with an embedded image

I'm trying to use Mapi MapiSendMail to send an email with an embedded image. Not having any luck. My file keeps showing up in the email as an attachment, not embedded. I see the MapiFileDesc nPosition field, which sounds like it indicates where in the message text the file should be embedded, but it doesn't seem to affect anything. My...

Flex Compiler Api: Adding images in Java

Hi there, I have a very specific question. I want to compile an ActionScript project within Java in-memory with the help of the Flex Compiler API ( http://livedocs.adobe.com/flex/3/compilerAPI%5Fflex3.pdf ). My last problem is to add images (jpg, png) that are embedded in the project to the compiler. I don´t see a possibility to do thi...

Jquery Cycle + Firefox Squishing Images

Hey guys, I'm running jQuery Cycle for an image gallery. View the link: Here My problem is that the images are getting squished when viewed in firefox. The problem disappears when I re-load the page. This leads me to believe that the Javascript is triggering before all the images are loaded (usually the first image works fine and the re...

Joining Multiple Images into one with a PHP script

I have this test page http://thechozenfew.net/projects/write_font.php that generates the text in the input box as a font. Each letter is a different picture, How would i join all these pictures into one image with a php script? This what i've tried so far but the images appear on top of each other. Header ("Content-type: image/gif"); ...

How to create a bitmap programmatically in C#

Hi, i need to create a 24 bits bitmap (resolution 100x100 pixels) using a unique RGB color and save the generated image to the disk. currently i use the SetPixel function , but it is extremely slow. Bitmap Bmp = new Bitmap(width, height); //... //... Bmp.SetPixel(x,y,Color.FromARGB(redvalue, greenvalue, bluevalue)); There is a faster ...

How to upload images to picasa web album as "Web address (URL)" ??

The Web album http://picasaweb.google.com has only the option to browse images from disk. What if I do not have images/photos on disk and I don't want to download image. If I know the URL of the image, can I avoid the round-trip of downloading and then uploading back to "Picasa web album" ?? ...

image upload ??????

hello all, i am having a mvc application.A web project and the language i am using is C#. i am having a update category form and in that there is a file upload control please tell me how will i do the update functionality because in the update controller we usually pass the collections object. please tell me what will I do..and How wi...