image

Java: make an low quality image

Hi, In the software 'Teamviewer', the quality from the images can be changed. It looks like the image comes from 32bit to 16bit (Or other values, like in the screen divece settings in windows). The image is realy smaller because you notice that the speed from the connection is higher. I don't want something like: "scale down, send and t...

How to reference local media via browser on the iPhone?

I have a bunch of media that I need to display in a UIWebView on the iPhone. I would prefer if the client did not have to download said media on booting up the application, but could just reference it locally and download it during the install of the application. Is this possible? ...

Displaying a GIF in Silverlight

I have a number of gifs in a folder on my web server /dir/subdir/bla.gif etc. On that same server is a Silverlight 3 application /ClientBin/bla.xap. Is there any way to display the gifs in the Silverlight app? I've tried <Image x:Name=img" /> and then in code setting this.img.Source=new BitmapImage(new Uri("/dir/subdir/bla.gif")) with...

adding image on a panel

hello everyone. uhhmm. ive been finding ways on adding images(Image object) on a panel. Basically, what i want to do is to create a page - a panel with moving objects (animation using sprites). but i can't. everytime i try to add the images to the panel, the screen goes on like "blinking". anyone can help me with this? I need this ASAP.....

UIBarButtonItem black instead of white

I have that Navigation Controller and I'm adding 1 button by code this way: UIBarButtonItem *configButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"config.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(showConfigWindow)]; self.navigationItem.leftBarButtonItem = configButton; It's working ri...

Django-imagekit: how to reduce image quality with a preprocessor_spec ?

Hi, please excuse me for my ugly english :p I've created this simple model class, with a Preprocessor to reduce my photos'quality (the photos'extension is .JPG): from django.db import models from imagekit.models import ImageModel from imagekit.specs import ImageSpec from imagekit import processors class Preprocessor(ImageSpec): qu...

How do I specifically get a static Web image url and apply it to an iPhone application blank view?

In building an iphone app, I can render a blank view, (say that's all I have, just a generic, full screen view) and I want to populate in that view an image from the web, say, "http://www.mypicture.com/mypicture.jpeg". I want to do this as fast as the network allows and not use the photo roll or any part of the os that the user can see....

ie6 - gd and php image outputting

Hi guys, i'm trying to show image with grayscale-filter. Here is my code: $images = glob('gallery/*small*'); shuffle($images); array_splice($images, 3); $imgHandles = array(); $imgBuffered = array(); for( $i = 0; $i < 3; $i++) { $imgHandles[$i] = imagecreatefromstring( file_get_contents($images[$i]) ); imagefilter( $imgHandles...

HMTL image maps & preloading images

I've built quite a large old school HTML image map. When you mouseover an area tag, another image is loaded that replaces the entire map. In all there are 30 some mouseover images and to avoid the delay in loading I've preloaded them using jQuery. Firebug Net panel shows all images are being loaded ok at pageload (no mouseover triggered...

How do i resize image file to optional sizes

Hi I have image upload form, user attaches aimage file, and selects image size to resize the uploaded image file(200kb, 500kb, 1mb, 5mb, Original). Then my script needs to resize image file size based on user's optional size, but im not sure how to implement this feature, For example, user uploads image with one 1mb size, and if user ...

Scrolling & zooming SVG Viewer on Windows?

We need to view some very large (7200+ pixels) SVGs. Every SVG viewer I've found, including modern web browsers, does not allow us to view the entire image. There aren't any scrollbars, and we do not have the option to zoom. Is an open source / free application available that could help with viewing the entire SVG image? Thanks! ...

Downloading Images from WikiMedia Commons

Is anyone aware of a way to programatically download images from WikiMedia Commons without registering for a Bot account? It seems like the only way to get approval for a Bot account is if it adds to or edits information already on Wikimedia. If you try to download any images, without a bot account, using some of the api libraries out th...

latex tabular vertical alignment to top?

I'm trying to create a simple tabular with two cells of text and two images below them like so: \begin{tabular}[h]{ c | c} \emph{Normal} & \emph{Cone} \\ \includegraphics[width=0.39\textwidth]{images/pipe1} & \includegraphics[width=0.61\textwidth]{images/pipe2} \end{tabular} The first image is shorter than the second and I want ...

How do I Acquire Images at Timed Intervals using MATLAB?

I'm a MATLAB beginner and I would like to know how I can acquire and save 20 images at 5 second intervals from my camera. Thank you very much. ...

Cocoa menu with images

I need to make a popup or pull down menu in Cocoa that will contain either an image or an image with text as the representation of the item. Can anyone suggest a way I could do this programatically? ...

change image on mouseover

I've got a simple html/css page, where I show a picture. Now when the user moves the mouse on the picture, I'd like to swap out the picture to some other image. Upon leaving the image area the old picture should be shown again. How can I achieve this? A version which works without javascript would be best. Thanks in advance! ...

How can I fix this strange IE 8 img anchor hover behaviour?

If I add this to my CSS... small a:hover, a:hover {background-color: #CCC; } This happens to all images that are also links when viewing in IE 8 (fine in firefox)... They look right... http://notails.com/nothover.jpg until I hover over them... http://notails.com/hover.jpg If I remove the line of CSS the behaviour goes away. I'v...

Are there any image hosting services with a public API?

I've been considering image hosting services for a project but am starting to wonder if that's just too complicated for my target audience as they'd have to upload all their images to the hosting service and then "attach" the images to the CSS file using the links the hosting service provides them. While that's a fairly simple process f...

SQL Server 2005 - How do I convert image data type to character format

Background: I am a software tester working with a test case management database that stores data using the deprecated image data type. I am relatively inexperienced with SQL Server. The problem: Character data with rich text formatting is stored as an image data type. Currently the only way to see this data in a human readable for...

Image that doesn't show up in IE or Chrome only

I have a jpeg that shows up properly in FF, but won't appear in IE or Chrome. I tried downloading the image and loading it in IE and Chrome directly without success: both browsers shows a broken icon. So this is not a network issue. This file is a result of an image resize by javax.imageio.ImageIO. I have processed over 1000 images succ...