image

Blackberry - How to retrieve images from a zip resource file?

I am using eclipse & JDE to develop Blackberry Application. I compressed a folder which has set of images in .jpg and .png formats. Please help me, how to retrieve images form the zipped file? Thank you..... ...

Can I retrieve my Flex .swf and images from different Amazon S3 buckets?

I have a Flex 3 SWF in one Amazon S3 bucket, which dynamically loads images for buttons which are stored in another S3 bucket. I have set a completely open crossdomain.xml file in each bucket, but when I call the SWF from my web site, only a few button images load - and they're just the 'up' or 'normal' state button images (i.e. not 'do...

String to Image WPF Converter

How to code a converter in WPF to display four status icons in WPF, In my project I am planning to display following four status based on certain conditions 1) Red Dot icon - Unsaved data 2) Green Dot icon - Save successful 3) White Dot icon OR No icon - window has Initialized successfully and there is no unsaved data. 4) Error icon - ...

c#: Getting the image behind a control

I have c# form which have several controls on it, part of the controls are located one on another. I want a function that will take for input a control from the form and will return the image that has to be behind the control. for ex: if the form has backgroundimage and contains a button on it - if I'll run this function I'll got the pa...

c# winforms: Getting the screenshot image that has to be behind a control

I have c# windows form which have several controls on it, part of the controls are located one on another. I want a function that will take for input a control from the form and will return the image that has to be behind the control. for ex: if the form has backgroundimage and contains a button on it - if I'll run this function I'll got...

Scroll a background in a different speed on a UIScrollView

When somebody does a wipe gesture to scroll the content from left to right, I would like to have a background image scrolling into the same direction, but at a different speed. Much like what these classic games did do 20 years ago (remember that, anybody????) ...

is libpng a png file decoder

I'm looking for a way to decode some png file, I heard about libpng, but I don't understand how this one works. Does it convert the png file into an array of bytes in the ARGB8888 format or something else ? ...

Anyone know which image uploader facebook uses?

Want to add a nice multiple image upload feature to a site so I figured use one that most people already know. This is a .Net MVC App Anyone know what Facebook uses? If not, then does anyone know of one that is similar? ...

Check whether image exists on remote URL

I am generating dynamic URLs of images for book ISBNs. I need a reliable way with PHP to check whether the images actually exist at the remote url. I tried various approaches with different PHP libraries, curl, etc., but none of them works well, some of them are downright slow. Given the fact that I need to generate (and check!) about 60...

Rollovers on non-decendent objects in jQuery

Hello All, I'm new to the site and need some help! I need buttons that when rolled over, they reveal a table (I got that done), as well as change their own image to a tab (which they do), but keep that rollover tab image until the mouse leaves either the button or its respective table (this is the problem). Basically, it's pretty easy...

Crystal Reports any way to change orientation of only one page?

I'm trying to change an individual page within a multi-page report so that the orientation is landscape instead of portrait. The page contains only images, and I'd like for them to be displayed sideways. Is there a way of doing this? Barring that, is there a way of rotating the images themselves? The images are dynamically added to the ...

How to access images on a directory outside of the web application

I'm using Apache and Windows and I'm writing an application that needs to display the images of parts that are on a different server, not in the path of the application directory. There are too many images to move and other applications use these same images. What is the best way to deal with this problem? The back end is php and myslq...

script for cropping images

Hi! I have many (about 1000) images (printscreens), and I need to crop these images (all cropped images are in the same region in the full image). How can I do this in php? Or maybe GIMP is supporting some macro scripts to do this? Thanks in advance. ...

How do I find a dimension of aspect ratio 4:3 which fits within a predetermined size?

The problem here is I have a display window of size x by y, and I need to display an image inside the window without any scrolling, and to maintain the aspect ratio of 4:3. I have the following snippet of code: // Lock the current height, calculate new width of the canvas and scale the viewport. // get width of the movie canvas qreal wi...

Store millions of small images in Firebird blob fields

I know you will say there are several duplicates for this question. I've read most of them. But I need an answer to the specific case I'm presenting. I'm planning to store millions of small jpg images (about 3kb) in a Firebird database. Assumptions: - The table that will contain these images will not contain any other information but i...

Adobe Flex - How to embed component inside an image's "window"?

I have a an image, lets call it "StageSkin.png". This is an image which is really just a border, and the middle of the image is "windowed", meaning that it is meant to show other information inside of it. The information inside of it is in the form of a component (based on a canvas component, lets call it 'Gauge'). I want to create a ...

Java : compress image without fully load them

I'm creating an applet that send pictures to a servlet. The applet first action is to resize and compress the picture. I'm using ImageIO to load the picture into a BufferedImage. Next I resize the picture and then use ImageWriter to compress it in jpeg. That's work fine. The problem is when the user send a very big pic(up to 70MP). Th...

Controls relative-positioned in Visual Studio 2008 gets misplaced in browsers

Hi all! I'm developing an aspx page using Visual Studio 2008 where I have a png image of a map of my country and many other png images, one for each state of my country. I'm trying to place these other images (little dots) over the image of the map using relative positioning. But I place the controls in design time at the position I wan...

Is it possible to use a Bitmap generated by code in an asp image tag?

I have written some code to create dynamic banners. It returns a bitmap variable. Is there some way that I can use this variable as the ImageUrl for an <asp:Image /> ? Here is the code that creates the image: public class SideImage { protected const int ImgCt = 4; protected const int ImgW = 130; protected const int ImgH = 1...

How do I set a background image for a grouped table view?

I've seen some iPhone applications that use a custom image as the background for a grouped UITableView, instead of the standard gray lines. How is this achieved? ...