active questions tagged images - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:27:00Z http://stackoverflow.com/feeds/tag/images http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816809/how-do-i-get-a-flood-fill-algorithm-to-cope-with-closed-circles -1 How do I get a flood fill algorithm to cope with closed circles? Bill 2009-11-29T21:17:08Z 2009-11-29T21:29:39Z <p>I have an application that accepts images as input and removes the background on which the image was taken. For example, if you pass in an image of a book on a blanket, the resulting image will be just the book with a transparent background.</p> <p>The problem I have is when you input an image that has a large empty space in it, e.g. an elastic band. The floodfill algorithm starts at the corners of the image and removes the background of the picture, but of course it never makes it into the interior of the elastic band.</p> <p>Is there a way of implementing this such that I can take an image of a closed circle against a background and get back just the loop itself, with no background inside or outside it?</p> http://stackoverflow.com/questions/94875/image-processing-in-python 1 Image Processing, In Python? akdom 2008-09-18T17:47:04Z 2009-11-29T08:53:51Z <p>I've recently come across a problem which requires at least a basic degree of image processing, can I do this in Python, and if so, with what?</p> http://stackoverflow.com/questions/1810973/android-getting-image-locations 1 Android: getting image locations pegisys 2009-11-27T23:21:04Z 2009-11-28T14:35:55Z <p>Hi, am looking for a way to find images on the SD card, or at least images taken by the camera.</p> <p>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. </p> <p>Thank you</p> http://stackoverflow.com/questions/1812563/imagecreatefromjpeg-php-another-image 0 ImageCreateFromJPEG PHP Another image Gully 2009-11-28T13:50:29Z 2009-11-28T13:54:56Z <p>How do you add another image to a image in php the itme i want to add is images/rank1.jpg?</p> <pre><code> $rImg = ImageCreateFromJPEG("images/card/test.jpg"); $cor = imagecolorallocate($rImg, 255, 255, 255); imagestring($rImg,5,60,3,$username,$cor); </code></pre> http://stackoverflow.com/questions/1811443/adding-pictures-in-certain-places-in-a-richtextbox-in-c 0 adding pictures in certain places in a richtextbox in C# sniperX 2009-11-28T03:29:09Z 2009-11-28T06:06:33Z <p>Alright, </p> <p>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.</p> <p>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</p> <p>~id like code examples if possible. thanks!</p> http://stackoverflow.com/questions/1489847/as3-unordered-xml-img-loading 0 AS3 - Unordered XML IMG loading Fabio Montone 2009-09-28T23:25:56Z 2009-11-27T17:00:03Z <p>Hello, </p> <p>I have this code that loads thumbs and full images in my project:</p> <pre><code>private function processXMLHandle(e:Event):void { var xml:XML = new XML(e.target.data); for each (var line:XML in xml.IMAGE) { var file:String = line.@THUMB; var loader:Loader = new Loader(); loader.load(new URLRequest(file)); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler); var fileFull:String = line.@FULL; var loaderFull:Loader = new Loader(); loaderFull.load(new URLRequest(fileFull)); loaderFull.contentLoaderInfo.addEventListener (Event.COMPLETE, completeFullHandler); } myXMLLoader.removeEventListener(Event.COMPLETE, processXMLHandle); } </code></pre> <p>When I push the array I'v created for that, the images comes in an unsorted order. </p> <p>I friend of my told me that It's happening something like that: "the small files are comming first". He told me that the problem is with the loader, but he can't help-me. </p> <p>Can anyone tell-me what's wrong?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1806617/using-silverlight-to-display-images-from-a-network-server 1 Using Silverlight to display images from a network server. Edward 2009-11-27T03:34:47Z 2009-11-27T07:34:03Z <p>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? </p> http://stackoverflow.com/questions/1806850/android-get-local-file-bytes 0 Android Get Local File Bytes JoshKraker 2009-11-27T05:03:42Z 2009-11-27T05:25:43Z <p>I'm trying to get a byte array of an image saved locally on the phone. I'm using the code:</p> <pre><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.MediaStore.Images.Media.INTERNAL_CONTENT_URI), 1); // Look in the SD Card // startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI), 1); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == 1) if (resultCode == Activity.RESULT_OK) { Uri selectedImage = data.getData(); Cursor Cur = Upload.this.managedQuery(selectedImage, null, null, null,null); if (Cur.moveToFirst()) { File Img = new File(selectedImage.getPath()); long Length = Cur.getLong(Cur.getColumnIndex(ImageColumns.SIZE)); byte[] B = new byte[(int)Length-1]; FileInputStream ImgIs; try { ImgIs = new FileInputStream(Img); ImgIs.read(B); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } int i = B.length; } } } </code></pre> <p>But it throws a FileNotFound exception on </p> <pre><code>ImgIs = new FileInputStream(Img) </code></pre> <p>How can I get the Bytes?</p> http://stackoverflow.com/questions/1798922/user-defined-thumnails-for-django-project 1 User-Defined Thumnails for Django Project? hanksims 2009-11-25T18:16:06Z 2009-11-25T19:19:30Z <p>I'm putting together a Web site that makes heavy use of images. Those images need to be thumbnailed at various sizes to fit different templates.</p> <p>I'm aware of solutions like sorl-thumbnail, which seems perfect in every way except one: I need to be able to override automatic resizing and cropping if the computer's choice is a bad one.</p> <p>For instance: Say I upload a 1,000-by-1,000 pixel image. I need a 300-by-200 thumbnail of that image. The sorl-thumbnail solution, if I understand it right, is to rescale the image to 300-by-300 and then lop off the top and the bottom. </p> <p>What I want to be able to do is a) accept the sorl-style solution if it works for the image, but b) be able to override the sorl choice -- in the admin, probably -- if that would work better. If it's a picture of a person, for example, maybe I would rather crop out the person's torso and just make a thumbnail out of her face, which happens to be located in the upper right corner?</p> <p>There's no off-the-shelf pluggable solution for this, so far as I can tell (but please correct me if I'm wrong). Barring that, I'd like to hear your ideas about ways that the problem might be approached. Is there some sort of jQuery plugin that will get me halfway there?</p> <p>Help!</p> http://stackoverflow.com/questions/1781011/is-there-a-way-to-have-a-dropdown-combo-in-an-asp-net-mvc-site-with-images-instea 0 Is there a way to have a dropdown combo in an asp.net mvc site with images instead of text? oo 2009-11-23T03:50:20Z 2009-11-25T17:01:51Z <p>Is there any way to have a combobox of images instead of text?</p> http://stackoverflow.com/questions/973591/resizing-images-on-client-side 1 Resizing Images on Client Side mattt 2009-06-10T03:42:25Z 2009-11-25T16:07:29Z <p>What is the best and quickest way to resize images on the client side using JavaScript?</p> <p><strong>EDIT: Sorry, I meant the best way to <em>display</em> an image resized on the client side..</strong></p> http://stackoverflow.com/questions/1053509/image-fromfile-is-very-slow-any-alternatives-optimizations 0 Image.FromFile is very SLOW. Any alternatives, optimizations? Joan Venge 2009-06-27T19:59:39Z 2009-11-25T00:27:03Z <p>I have a winforms image list which contains say like 200 images 256x256.</p> <p>I use the method <code>Images.FromFile</code> to load the images and then add them to the image list.</p> <p>According to ANTS .NET profiler, half of the program's time is spent in <code>Images.FromFile</code>. Is there a better way to load an image to add to an image list?</p> <p>Another thing that might be optimized is, the images that are loaded are larger than 256x256. So is there a way to load them by resizing them first or something? I just want to uniform scale them if they their height is larger than 256 pixels.</p> <p>Any idea to optimize this?</p> <p>EDIT: They are JPEGs.</p> http://stackoverflow.com/questions/1605266/problem-with-jquery-and-ie-and-loading-images 0 problem with jquery and ie and loading images joe 2009-10-22T05:56:05Z 2009-11-24T18:30:34Z <p>I have a web page that consists of three parts, script, style and body. the body is just tables of images - the problem is that when you first load the site all the images load one on top of the other - a real mess. The images should all be invisible and only appear when certain words are clicked - this is all done with javascript. Once all the images load they all disappear and then the site works the way it is supposed to. It is as if all the images are first read in visible and then the javascript kicks in and hides them since they were tagged with a div id that the javascript hides. I do not have this problem with safari 4.0.3 and mozilla - but I do have this problem with older versions of safari. Any way to prevent the images from initially being visible? </p> http://stackoverflow.com/questions/1791493/jquery-images-type 0 jquery, images type Alexander Corotchi 2009-11-24T17:07:40Z 2009-11-24T17:10:36Z <p>Hi! </p> <p>I'd like to change image type with jquery, for example:</p> <pre><code>&lt;img width="250" height="61" alt="Stack Overflow" src="http://sstatic.net/so/img/logo.png"/&gt; </code></pre> <p>to</p> <pre><code>&lt;a href="/"&gt;&lt;img width="250" height="61" alt="Stack Overflow" src="http://sstatic.net/so/img/logo.gif"/&gt;&lt;/a&gt; </code></pre> <p>To change ".png: in ".gif" (in this case)</p> <p>Thanks !</p> http://stackoverflow.com/questions/1789537/round-images-with-asp-net 0 Round images with asp.net Kunal 2009-11-24T11:40:16Z 2009-11-24T13:56:54Z <p>Can i create round images with asp.net? Please advise. My requirement is to upload any image and get a rounded version of that created bu asp.net. I am using .Net framework 3.5, visual studio .net 2008.</p> <p>Many thanks in advance.</p> http://stackoverflow.com/questions/989606/phonon-and-image-support 0 Phonon and image support Daniel 2009-06-13T00:25:07Z 2009-11-24T08:00:06Z <p>I'm trying to build a simple slideshow-like effect using Phonon with PyQt. The "slideshow" will be made up of images and/or video, but the images should display for some fixed period of time. When I queue up an image in a <code>MediaSource</code>, it is displayed for only a short moment.</p> <p>Phonon appears to support images via the backend (at least on OS X with Quicktime), but I haven't found anything documented to indicate this. The <code>Phonon.BackendCapabilities.availableMimeTypes()</code> function only returns audio and video formats; none of the formats I've successfully tested - JPEG, PNG - are listed.</p> <p>I need to determine if a given <code>MediaSource</code> is an image or not, so I can tell the <code>MediaOjbect</code> to pause for some given period of time. Of course I can make a big list of known image format extensions, and check the filename of the media - but this is kludgy. How can I do this with Phonon?</p> http://stackoverflow.com/questions/1787319/preload-hidden-css-images 4 preload hidden css images cory.mp 2009-11-24T01:58:16Z 2009-11-24T02:41:47Z <p>I'm working on a jquery based homepage with 5 or so hidden divs, each containing several background css images. </p> <p>The issue is that the browser doesn't load css images into the DOM until the visibility of the parent layer is shown, causing images to slowly load in when the layer becomes visible. </p> <p>Solutions I've already considered:</p> <ul> <li>CSS sprites (too much work to redesign for this, and wont really work when showing/hiding divs)</li> <li><a href="http://www.filamentgroup.com/lab/update%5Fautomatically%5Fpreload%5Fimages%5Ffrom%5Fcss%5Fwith%5Fjquery/" rel="nofollow">This jQuery plugin</a> that auto-loads css background images (simply doesn't work for me as reported by many others). </li> <li><p>preloading the images via js:</p> <p>$(function() { function preloadImg(image) { var img = new Image(); img.src = image; }</p> <p>preloadImg('/images/home/search_bg_selected.png'); });</p> <p>This solution seems to load the image into the dom twice...once when the js loads it, and then again when the div layer that loads it becomes visible...so it makes 2 http calls, thus not working</p></li> </ul> <p>Any other solutions for this problem that I'm missing?</p> <p>Thanks! </p> http://stackoverflow.com/questions/1786531/c-library-for-editing-photo-tags-et-cetera-compatible-with-live-photo-gallery 1 C#: Library for editing photo tags, et cetera, compatible with Live Photo Gallery Svish 2009-11-23T22:32:53Z 2009-11-23T23:48:45Z <p>Are there any good .net libraries I can use to read and write tags, people tags, date take, et cetera that are compatible with Windows Live Photo Gallery?</p> http://stackoverflow.com/questions/371337/background-image-is-not-displayed-in-firefox 0 Background image is not displayed in Firefox petersidor 2008-12-16T13:44:39Z 2009-11-23T20:34:52Z <p>An image set as the background of a DIV is displayed in IE, but not in Firefox.</p> <p>CSS example:</p> <pre><code>div.something { background:transparent url(../images/table_column.jpg) repeat scroll 0 0; } </code></pre> <p>(The issue is described in many places but haven't seen any conclusive explanation or fix.)</p> http://stackoverflow.com/questions/1784661/php-gd-create-new-image-based-on-combine-join-3-images-and-then-rotate-the-new 0 php gd: create new image based on combine/join 3 images, and then rotate the new image mauricio lopez 2009-11-23T17:24:33Z 2009-11-23T20:15:07Z <p>Basically I have 3 png images. They have the same height and different width.</p> <p>I want to create a new image on the fly, then join the 3 images (not merging, I want to respect the content of each image) and put them on the new image.</p> <p>After that I wanto to rotate that new image.</p> <p>I want to do it with php GD.</p> <p>If someone can give me an idea, It would be awesome.</p> http://stackoverflow.com/questions/1755896/php-upload-pics-with-space 0 PHP upload pics with space francesco 2009-11-18T13:17:05Z 2009-11-23T07:57:40Z <p>Hello, please I need hep with the following.</p> <p>I have an upload pictures form. I need to make sure that pics which contain spaces in name are replaced wiht something else, I guess is %.</p> <p>ie pics name is: aa 22.jpg</p> <p>If uploaded this way it does not show it because of the space between aa and 22. What it the way to get rid of the space or replace it with % when uploaded?</p> <p>Many many thanks. Francesco</p> http://stackoverflow.com/questions/1780722/horizontal-scrolling-div-with-images-wont-display-inline 0 Horizontal scrolling div with images won't display inline Johnny 2009-11-23T01:38:59Z 2009-11-23T02:20:17Z <p>I'm trying to create a div with a fixed size that contains images only. I'd like them to be the height of the div, display inline, and scroll through them horizontally. I'm having trouble making this work. I'd to do this as simply as possible. What am I missing?</p> http://stackoverflow.com/questions/1318057/creating-image-cloud -2 Creating image cloud nur.sarowar 2009-08-23T08:21:02Z 2009-11-22T21:44:15Z <p>How can I create image cloud like <a href="http://bestuff.com/" rel="nofollow">http://bestuff.com/</a> with PHP and CSS. Any similar hints or example?</p> http://stackoverflow.com/questions/1778589/non-rectangular-css-image-links 0 Non Rectangular CSS Image Links Mindblip 2009-11-22T12:35:12Z 2009-11-22T17:06:19Z <p>Hi,</p> <p>I have the following requirement:</p> <p>A large image contains several 'hotspots' that need to link to other pages. Sounds simple. I have created a simple html page, a div with the background image and absolute positioned links using CSS with image sprite rollovers.</p> <p>However, I have now been presented with another image and the hotspots are not square, but irregular shapes. In one example they are similar to surfboards. Any ideas how I can get the links to respond to only the actual bounding box of the image. There are also instances where the 'hotspots' are parallelogram shaped and butted up next to each other.</p> <p>Creating rectangular images in this instance just doesn't achieve the results required.</p> <p>I think imagemaps might be a solution, but I want explore all alternatives first.</p> <p>Hope this makes sense.</p> <p>Thanks, Paul</p> http://stackoverflow.com/questions/1420961/image-navigation 1 Image navigation nithi 2009-09-14T11:20:07Z 2009-11-22T16:00:03Z <p>How to navigate the image using Keyboard arrow keys in C#.</p> <p>My 1st form contains listView. The listview contains 10 images in thumbnail format. The image are from particular folder. When I double click the image in the list view, it opens in a new window as large image. I want to navigate the image in the new window as per listview order.</p> <p>If I click the image randomly, want to navigate the image from that selected image.</p> <p>It's like a Microsoft picture manager.</p> <p>Plz give me an Idea.</p> http://stackoverflow.com/questions/1777688/php-images-add-txt 1 PHP images add txt Gully 2009-11-22T03:00:37Z 2009-11-22T03:13:34Z <p>I am trying to get it to show text1 and text2 on the same image only Text1 is showing up</p> <pre><code> $rImg = ImageCreateFromJPEG("test.jpg"); $cor = imagecolorallocate($rImg, 0, 0, 0); imagestring($rImg,5,126,22,"Text1",$cor); imagestring($rImg,5,500,34,"Text2",$cor); header('Content-type: image/jpeg'); imagejpeg($rImg,NULL,100); </code></pre> <p>Thank you</p> http://stackoverflow.com/questions/1777132/wpf-images-trying-use-to-use-treeview-but-cant-get-background-to-be-clear 1 WPF Images - Trying use to use treeview, but can't get background to be clear Robert 2009-11-21T23:25:24Z 2009-11-22T00:19:16Z <p>Greetings,</p> <p>I have a TreeView containing a set of TreeViewItems - Each TreeView is pretty simple (just some text, plus an image) - The images are usually folder &amp; files icon. All good and simple...except for the fact that since the contents of images do not fit an exact square, there is some white background surrounding portions of each.</p> <p>Of course, the problem then is that when drawn and then selected by the user, the unsightly white pixels of the image background get displayed (instead of being clear and blending with the highlighting), creating a rather amateur look.</p> <p>It's been a few years since I've done heavy Windows GUI programming, but I recall in Win32/MFC, there used to be a single, handy value that you could set which contained the color that should not be rendered for an image (preventing this problem). But I don't know what is offered in WPF that would offer similar capabilities.</p> <p>Any advice?</p> <p>Thanks!</p> http://stackoverflow.com/questions/158756/what-is-the-best-image-manipulation-library 17 What is the best image manipulation library? Steve Tranby 2008-10-01T17:31:19Z 2009-11-20T13:26:52Z <p>I would love find out which is the best image manipulation library for which platforms and languages. Likely you could use a library under multiple platforms with the right API or Plugin capabilities. I'm specifically looking for web based applications, but please answer for desktop apps as well if you like.</p> <p>Libraries (and the common <strong>direct</strong> language support):</p> <ul> <li><a href="http://code.google.com/p/aforge/" rel="nofollow">AForge</a>:</li> <li><a href="http://www.atalasoft.com/products/dotimage/" rel="nofollow">Atalasoft DotImage</a>: .Net</li> <li><a href="http://cairographics.org/" rel="nofollow">Cairo</a> : C++, Lisp, Java, .Net, Perl, PHP, Python, Ruby</li> <li><a href="http://www.xdp.it/cximage.htm" rel="nofollow">CxImage</a>: C++</li> <li><a href="http://us3.php.net/gd" rel="nofollow">GD</a> : PHP</li> <li><a href="http://www.graphicsmagick.org/" rel="nofollow">GraphicsMagick</a>: C, C++, Perl, Ruby</li> <li><a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a> : C, C++, Java, Lisp, .NET, Pascal, Perl, PHP, Python, Ruby</li> <li><a href="http://www.leadtools.com/SDK/Raster/Raster-Image-Processing.htm" rel="nofollow">Lead Tools</a>: ActiveX, .Net</li> <li><a href="http://www.pythonware.com/products/pil/" rel="nofollow">Python Imaging Tools</a>: Python</li> <li><a href="http://msdn.microsoft.com/en-us/library/system.drawing.aspx" rel="nofollow">System.Drawing</a> : .Net</li> </ul> <p>Also suggested:</p> <p>Yuval Peled - Intel's new <a href="http://www.developers.net/intelmcshowcase/view/382" rel="nofollow">Intel® Integrated Performance Primitives</a> for image processing. </p> <p>rics - RoboRealm has <a href="http://www.roborealm.com/links/vision%5Fsoftware.php" rel="nofollow">list</a> of vision software.</p> <p>Thanks for the suggestions!</p> http://stackoverflow.com/questions/1769535/jquery-smooth-image-change 0 jQuery smooth image change Napolux 2009-11-20T10:15:23Z 2009-11-20T10:15:23Z <p>Hi there... I wonder how to make image change in my jQuery script smoother.</p> <p>I also have an animate() chain, can I attach the "src" change into it or not? Sadly I can't use images as CSS backgrounds...</p> <p>Here's a little sample...</p> <pre><code> function growBigger(element) { $(element) .find(".inside") .animate({ width: curWidth, height: curHeight, marginTop:"0px" }) .end() .find(".label") .animate({ fontSize:curTitleSize }) .end() $(element + " .inside .thumbnail").attr("src","images/big_" + curPanel + ".jpg") } </code></pre> http://stackoverflow.com/questions/1766034/saving-loading-images-from-to-stream-instead-of-a-disk 0 Saving/Loading Images from/to stream instead of a disk zSysop 2009-11-19T19:47:39Z 2009-11-19T19:58:22Z <p>I have the following code which takes an improperly saved Image from the database converts it to a Jpeg and returns the Image in a byte array;</p> <pre><code> public Byte[] GetImageFromDB(int id) { var imageData = _repository.GetImage(id); var newImageData = ConvertCorruptedImage(imageData, id); return newImageData; } private byte[] ConvertCorruptedImage(byte[] imageData, int id) { // Save DB Image as a file. MemoryStream img = new MemoryStream(imageData); var saveDBImage = Image.FromStream(img); string originalFileName = @"c:\original_" + id.ToString() + ".jpg"; string newFileName = @"C:\new" + id.ToString() + ".jpg"; // Delete if already Exists DeleteImageFile(originalFileName); saveDBImage.Save(originalFileName); // Read Saved DB Image From Saved File &amp; Save as jpeg Bitmap bm = new Bitmap(originalFileName); bm.Save(newFileName , ImageFormat.Jpeg); // Return Converted JPEG Image var newImage = ImageToByte(Image.FromFile(newFileName)); //DeleteCreatedImage(newFileName); //DeleteCreatedImage(originalFileName); return newImage; } private byte[] ImageToByte(Image img) { ImageConverter converter = new ImageConverter(); return (byte[])converter.ConvertTo(img, typeof(byte[])); } public static void DeleteImageFile(string fileName) { FileInfo file = new FileInfo(fileName); if (file.Exists &amp;&amp; !file.IsReadOnly) { System.IO.File.Delete(fileName); } } </code></pre> <p>I was wondering if there was a way to do this without saving a file to the hard disk or if i do save it then deleting it once i am done with it.</p> <p>I've tried adding a delete for each images (check the commented out portion of the ConvertCorruptedImage method) but i keep getting the following error:</p> <pre><code>The process cannot access the file 'C:\new_xx.jpg' because it is being used by another process. </code></pre> <p>I really don't want to be saving images to a hard disk.</p> <p>Thanks in advance</p>