image

Image Upload Resizing Tool

I am looking to allow visitors to my site to upload, resize and place their image on a canvas. The canvas will be the same size as how it will appear on my site. I uploaded a video of how I want to it to work at http://www.youtube.com/watch?v=pJVRcs-ZF2Q .. does anyone know the best way to approach creating this technology? ...

how to draw image corners rounded in blackberry

Hi, can anybody help me in making image with rounded corners. Please help me with piece of code. Any help in this regard is highly appreciated. Also email me at [email protected] i will be very thanful to all of u. ...

Confusion with Gravatar URLs.

I am having a bit of trouble getting Gravatars to work properly: When I request the following: http://gravatar.com/avatar/8a17d0d0d8bdf6a8d527bbc943a17cf8.jpg?s=64&d=identicon Firefox proudly displays the following: ...indicating that the file is a PNG image. This confuses me - I thought Gravatars were JPEG images. It seems like ...

Drawing an anti-aliased line with thePython Imaging Library

I'm drawing a bunch of lines with the Python Imaging Library's ImageDraw.line(), but they look horrid since I can't find a way to anti-alias them. How can I anti-alias lines in PIL? If PIL can't do it, is there another Python image manipulation library that can? ...

BlackBerry drawTexturedPath Rotate Move Anchor to Center of Image

I know how to rotate a BlackBerry Bitmap image an arbitrary angle with drawTexturePath. But, The Rotation Anchor is at the top-top left of the image. How do I move the Anchor to the center of the image? This code uses Graphics.drawTexturedPath to rotate around top-left corner: int[] x = new int[] {0, width, width, 0}; int[] y = new i...

is there any difference between grey scale image and binary image?

is there any difference between grey scale image and binary image? ...

How do I convert a 24-bit colour image to binary image using MFC?

how to convert a bitmap image in binary image? ...

How do I make IE8 show all images loaded with ajax?

I load a bunch of images by replacing the contents of a div with the appropriate image tags. On Safari and Firefox this always works 100%. On IE8 (quite possibly also in lower versions) the images get loaded most of the time, or at least most of them but some are missing. They are just not there. There is no image not loaded red cross ...

Zoom Controls for ImageSwitcher in Android 1.6?

Hi folks, I wish to do the Image Switcher's Touch Event. That is when i touch it, it should wake up the zoom controls. After zoomed in, the image can able the touch scroll on the image up and down. how to do it? Is there any default zoom controls? If not, tell me your suggestion, idea and also valuable links about this? make a note the ...

Google image api, how to get more than 8 results per search

Hi all. I'm using google image api, i've set large result set, now it retrieves 8 images. What should i do in order to get more images at once? more than 8 images Thank you ...

Algorithm for sorting images by relevance

I'm developing a feature on a forum site that will allow to include a link and other type of content on a post (for clarifying the question or answer). Related to the link feature implementation, I have several things to work on: Validate the URI entered (well formed, valid scheme, etc.) Validate that the remote resource exists Extrac...

matching jigsaw puzzle pieces

Hi there, I have nothing useful to do and was playing with jigsaw puzzle like this: and I was wondering if it'd be possible to make a program that assists me in putting it together. Imagine that I have a small puzzle, like 4x3 pieces, but the little tabs and blanks are non-uniform - different pieces have these tabs in different heigh...

Upload image by using Flex and PHP..

Hello I was wondering if anyone knows the best way to upload the image file by using Flex 4 and PHP. I have searched online but most of them are using Flex 2 or older version. I am just curious if there are any new ways to do it. If you know any good sites or articles, please reply. I appreciate the help! update: just found a good ...

Need help modifying curl php image get script please

I need to modify this simple script, have searched the web for hours but getting nowhere with it. What I need to do is firstly fetch the url to be used from either a text file on my site or from a decoded json output - such as "$FullPicURL = "http://somesite.com" . $data[2];" or "file_put_contents($image, file_get_contents("http://somes...

load remote images via Javascript, then selectively add to array

Using javascript I'm trying to load images not on the current page (from an array of image links) and if they are large enough, add them to an array. I'm executing this after the current page has loaded, though a bookmarklet, or firebug console. Using FF. The closest I've come is the below, but this does not seem to work, and I'm guessi...

ASP.NET MVC 2 not displaying images in CSS files

I have a small app I've written, and it works well when using the dev server, but as soon as i switch to IIS on my local box (IIS 7), I lose images and styles. I tried using Url.Content and that kind of works for styles and images in the master page, but I still lose images that are referenced from CSS styles Is there any way I can ge...

Create asp.net Image object from external image url

I want to crop an image at the server side (I am using 'JCrop' and 'ASP.NET 3.5'). There is a case when the user can add an image from external site to an article.I want to anable the user to create a thumbnail from that image and store the result on the server. In this case code like string originalFile = Server.MapPath(this.srcImage....

Images in WPF 4.0 are of lesser quality than in 3.5

Hello, I just updated my app to .Net 4.0 from 3.5sp1 Which included removing references to the toolkit and exhange them with system.xaml. Some more reference changing was required by me but I dont quite recall what they were. Anyway, after I compiled and run it the the first thing that popped into my eyes is that all the images seem wors...

WPF image offset

I have image with size 800x600 and i need to show small image fragment 90x30 with offset x=12 and y 12. I create brush for that but i dont know how to make offset. var source = new ImageBrush(groundSource); source.Stretch = Stretch.None; source.AlignmentX = AlignmentX.Left; source.Alig...

Image pan and zoom with GWT

I have a fixed size image and I want to show a subset of the image. I want to allow the user to click and drag to move the visible area of the image. The Image class has a nice setUrlAndVisibleRect method which can handle the image area display. The problem I am having is getting the mouse click and drag to work. I registered Mouse Dow...