image

What program(s) generate grammar graphs?

I see grammar graphs on the websites for SQLite and JSON. What program can be used to generate these pretty pictures? ...

CSS image overlay require multiple calls to the server?

Lets say I have an image gallery of 20 photos, then lets say I want to have another image as an image overlay on top of the 20 photos to make rounded corners or any other thing. So that is 20 different photos + 1 photo that is called 20 times to be on top of the photos Does the browser count this as 21 calls or http connections or as 4...

JavaScript: Know when an image is fully loaded

If I have a beacon: <img src="http://example.com/beacon" /> I want a method to be called once the beacon request finishes. Something like: <script> $("img.beacon").load(function() { // do stuff knowing the beacon is done }); </script> Is it possible? Is it in jQuery? ...

Starting semantic image recognition

How to recognize (in)appropriate images? To facilitate, enable and easify photo and image moderation and administration targeting gae, I try get started with basic python image recognition ie basic semantic information what the image looks like to hold back doubtful material until human can judge it, and to approve the most that are goo...

How to resize an image in C# to a certain hard-disk size?

How to resize an image an image in C# to a certain hard-disk size, like 2MiB? Is there a better way than trial and error (even if it's approximate, of course). Any particular keywords to search for when trying to find the solution on the web? ...

Watir image processing

Is there a way to get an image extension (based on the content-type header) and it's body in Watir? Here is an example require 'watir' zz = Watir::IE.new zz.goto('http://flickr.com') image = zz.image(:src => %r/l.yimg.com\/g\/images\//) puts image I need to get extension and the contents (base64encoded or just location of a temp fil...

How can I display an image using the "em" unit?

I've created a <div> with width:10em and height:5em. Now I would like to display an <img> (GIF image) in this <div> with the exact same size. But apparently it doesn't "know" the em unit. It shows the picture in 10x5 pixels instead. How can I display this <img> using the "em" unit? ...

.NET How to extract embedded image from email message?

Hello I'm working on a project in .NET 1.1 and I have a requirement to extract (and save it somewhere) embedded image from emails that I'm receiving. Can someone give me a clue on where to start? thank you ...

jquery ajax image

Hi all, I am sending an ajax request on dblick for creating the image of the screen where it is double clicked.I am ising imagegrabscreen() function of PHP to create image but instead of creating its image it is creates a black image. dblclick(function (ev,ui) { var response = $.ajax({ ty...

How to Delete a File from a folder using PHP

Hello all, I am currently developing a IMAGE GALLERY site. Every thing is working well and GOOD except a small Problem. For example, if i am deleting a image in the site its deleting successfully from the database and no longer displaying in the gallery. But i need to remove the specific image from the folder. Is there any chance to do...

position a picture in the middle

Hi, I (absolute beginner) would like to put an image into a box with a little margin around. I tried with padding and so, didn't work. Then I tried this: <div style="border:1px solid #CC6699; width:11em; height:5.5em;"> <img style="align:center; width:10em; height:5em;" src="path"> </div> But instead the image gets stuck in the u...

Disable Image loading on WebBrowser-Control C# .Net 2.0+

I am using vs2008 and I would like to disable image loading on my webbrowser control but I dont see any solution except for the WebBrowserEX which doesn't seem outside of .net 1.1. Anyone know how to do this? Thanks! ...

Get image Height and Width

WPF programmed in C#: I have a program where the user can click a box and a dialog box pops up and they can select any image. Whatever image they select will appear in the box. I want to be able to display the width and height of the image, because if the image they selects is small, it'll resize to fit the box. But I want to display the...

How to prevent multiple background repaint .NET winforms

Hi all, I have a background image stored in the database so instead of setting BackgroundImage property of the form I handle OnPaint event to draw the image on the background for each form. The problem is that each control on the form invalidates parent control - the form, so the OnPaint fires multiple times (12x). Even though the image ...

Eclipse extension for opening TIFF (type 4) images?

I need to display a TIFF (type 4) image in Eclipse from a Java stream. TIFFv4 is not supported, so I need an image library. Sun's JAI-ImageIO has native code -- I can't wrap it easily into a plugin. I can't just import jai-imageio.jar (et al) from the lib\ext directory because Eclipse has its own ideas about classpaths. Any suggestion...

WPF - How to create image button with template

I am trying to create a button which has 3 images: a Normal image, a Pressed image and a Disabled image (I will use these for creating up/down arrow buttons). I believe the correct approach would be to derive from Button and use a Template and set triggers to change the image. I have 3 dependency properties, one for each image. The im...

Speed up image display

Hello, I am using the PIL (python image library) to crop a very large image and present the cropped area to the interface. The problem Im having is that the process is taking too long. When the user clicks on the image to crop it, the image takes quite a long time to show up on the sizer I attach it to. I tried doing this two ways: ...

IIS 6 caches static image

Even if the image is changed, overwritten, modified, IIS still serves the cached copy. I am trying to upload an image from a webcam taken every 15 seconds. The image makes it onto the server but when I refresh the browser with the image FROM the server it does not refresh. IIS caches the file apparently for more than 2 minutes. I want t...

How do I set the background of UIScrollView to be transparent?

What i ultimately would LOVE to do is having my scroll view contents scrolling (in the scroll view control), and have a static background (a wallpaper image). I've tried a combination of things, none of which really yields what im looking for, not even close really. Has anybody attempted this before? ...

What is the best way to split an Image in Silverlight?

I am looking to split an Image into two tiles. One would be the left half of the image the other the right (so both half the size of the original Image). These will then sit next to each other before an animation will pull them apart. I have attempted to create two images and used the Clip property. This does show the correct part s of ...