image

Hmm... "add as link"ed images don't show up at runtime.

Sorry guys, I posted this earlier today where my "add as link"ed images were giving me a design-time error. I got assistance with that and now my code compiles, but now the images don't even appear when my application runs. Just for giggles, I changed the Build Action for the images, and nothing made a difference. Is there anything I ...

Removing extra pixels after shrinking to a point and selecting the correct pixel as the cross point with Matlab

link text Based on the link above, I managed to get the cross point but sometimes I get 2 or more results. I have 10 similar images with the cross slightly moved in every frame. Is there a way that I can remove the extra pixels remaining that are very off from the other 9 images by comparing it to the cross point of the 1st image? As th...

Techniques for extracting the 'best' image from a webpage.

I'm trying to build something akin to Facebook's "Share" functionality for my website. I've gotten to the point where I can accept a URL, scrape it for meta keywords and suitably get titles/descriptions, but I'm a bit stuck as to the best way to determine 'likely' photos the user may want to share. I currently use the SimpleXMLElement ...

RAW Image processing in Python

Are there any Pythonic solutions to reading and processing RAW images. Even if it's simply accessing a raw photo file (eg. cr2 or dng) and then outputting it as a jpeg. Ideally a dcraw bindings for python, but anything else that can accomplish the came would be sufficient as well. ...

How can I set a highlighted image on a table view cell?

I've followed the code in Apple's AdvancedTableViewCells and built a table view with a background image for cells. Now I want to change it so that instead of the blue highlight colour, it shows a darker version of my image. What are the steps I need to follow to do this? I'm using a UITableViewCell subclass with a custom NIB. My backgrou...

Magento images not showing on front end

I'm using Magento 1.4. I have two website set up. If I upload images to Website A, they appear fine on both front and back end. If I upload or import images to Website B, they do not appear on the front end, only the backend. I'm completely stuck. I'm happy to provide any additional details that may be helpful, but am so frustrated I'm n...

iphone assign image to viewcontroller problem

Hi i am retrieving image to my second view using URL,problem is i cannot able to assign the image to the UIImageView object this code working fine NSData imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://dblog.com.au/wp-content/galah.jpg"]]; UIImage animalImage = [[UIImage alloc] initWithData:imageData]; problem...

Magento layout without category image

hi, i want to remove a category image from a content section and let the subcategorys be displayed with their category images in a small: http://magento.hamburg-eyewear.de/index.php/eyeglasses.html the top category should be removed and the two subcategory underneath should be small images. how can i fo that? thank & regards. ...

Order of loading images in html and css

Hello, can I programatically (or, as we're speaking about html and css, semantically) decide in which order should images load? I want to make background image load first and then call som javascript upon $(window).load, is it enough to leave it on browser (e.g. body-background is on line 40, other images are later in css file) or do I...

Image URL not changing in Update panel

Ok this is probably really simple but I have been staring at it for too long now. I have an AJAX AsyncFileUpload control that when a file is selected I want the Image next to it to change. I tried it in Javascript and it did nothing, i have since tried it server-side and still nothing. here is the client side. <asp:UpdatePanel runat...

Iphone reduce Image file size

Hello, Is there anyway to reduce the Image file size or Raw RGB buffer ? Actually I have RGB buffer which it has 500KB with 320X420 size.I tried to save it to disk using UIimage and it comes to 240 KB. As per the image size, I want it to have less than 50KB or so.(loosing quality is OK) Is it possible ? Thanks, Raghu ...

Missing images in FlowDocument saved as XPS document

I am having some difficulties getting images contained in a FlowDocument to show when the FlowDocument is saved as an XPS document. Here is what I do: Create an image using the Image control of WPF. I set the image source bracketed by calls to BeginInit/EndInit. Add the image to the FlowDocument wrapping it in a BlockUIContainer. Sa...

Is it possibule to insert 200 JPG image together in the excel file with the same size into its cell ?

Dear Everybody, I have 2000 JPG images in a folder & I want to insert all those pictures in a column of excel file into its cells with the same size.So,request you to kindly provide me the easy way to do the job in the short time. Best Regards Sant ...

preg_match_all image source

I have the following regex expression which is to extract the source of any img tag in HTML. /(<img).*(src\s*=\s*"([a-zA-Z0-9\.;:\/\?&=\-_|\r|\n]{1,})")/isxmU However, it doesn't appear to be matching the following: <IMG SRC='http://www.mysite.com/pix/lens/mtf/CAEF8512L.gif'&gt; How can I build it to match this as well? ...

Move large resized image in IE(7 and 8) is very slow.

Hi, im writing some code to move dinamically an element on my page. If i try to apply this at img element with generous dimension i notice in IE a very slow down effect. Also, if the image is not displayed with its full size, IE seems to be more more slow. I think IE apply a sort of resize algorithm for img every time it is refreshed... ...

HTML5 cache manifest: whitelisting ALL remote resources?

I'm doing an iPhone version of a desktop site that includes a blog. The blog often embeds images from other domains (the image URLs always start with http:// in this case, obviously), but because I'm using cache-manifest, these images don't load because they aren't declared in the manifest file. I have a NETWORK: whitelist section that ...

How to Store and Retrieve Images Using SQL Server (Server Management Studio)

I am having difficulties when trying to insert files into a SQL Server database. I'll try to break this down as best as I can: What data type should I be using to store image files (jpeg/png/gif/etc)? Right now my table is using the image data type, but I am curious if varbinary would be a better option. How would I go about inserting ...

Memory leak while asynchronously loading BitmapSource images

I have a fair few images that I'm loading into a ListBox in my WPF application. Originally I was using GDI to resize the images (the originals take up far too much memory). That was fine, except they were taking about 400ms per image. Not so fine. So in search of another solution I found a method that uses TransformedBitmap (which in...

Virtual Tour Viewer?

My client wanted me to put a virtual tour video on their website. They bought it from "ForRent.com". They forwarded it to me, and its nothing but the panoramic images. When I asked about some type of viewer/player, they simply stated I would need js or flash installed on my computer (i do). Of course, thats not going to magically put the...

Images in email: link or embed?

I noticed that almost all email messages I get do not embed images, but link them from the http instead (and they get blocked by default of course). I'm sending HTML email for my service and can easily embed images to create better visual experience. Is there particular reason not do so? Why everybody else is linking instead of embedding...