image

Simple image editing service with API

I have been using Snipshot's API to provide simple image editing inside a web application. Recently they started injecting ads into the page and aren't providing anyway to remove them, even for paid accounts. So, I'm looking for another service. Key features would be that it is simple, easy, and light on any external branding. Picnik is...

Image centered in Firefox but not IE

Can anyone tell me why the logo on this page is not centering in IE? http://www.cateringvisions.com Thanks! ...

Detect if specified url is an image in Android?

How to detect quickly if a specified URL contains an image in Android? I have link of type http://foo.bar/w23afv so naive approach like checking end of URL string won't work here. ...

CSS image overlay for image hyperlinks

Hello, I have a menu made up of images and on a:hover I want to add a background image rather than simply doing image replacements (all in CSS, no JavaScript). However, if I simply change the background image, while transparency and horizontal alignment are fine, it's just at the wrong vertical placement. No matter what I try the backg...

Method to pass an image value?

How would i go about passing an image to the next page for android? ...

Are images in Android global?

This is a strange problem -- may be not a problem. Before the last step to finish writing a application, I would use icon to replace any image. That is, all the things like <ImageButton android:id="@+id/top" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="center" android...

saving images to res folder

how do i save images to res folder or drawable folder in android? ...

Is there a standard ImageViewer on Android?

There are some applications out there, that use a kind of standard way for showing images to the user. There is one i specially like, is the Facebook one. Facebook presents images to the user in full screen mode, with a black background. If user clicks on the image, there appears a left and/or right arrow to move to next/previous image i...

display icon from my sd card

I would like my app to grab an image from the phones sd card to use as the notification icon in the status bar, but android needs a resource id to build the notification with an icon. if I load an image from my sd card, does it have an resource id and how can I get it? or is there another way to get this to work? ...

Matlab write 1-bit bmp

Hello, How can I write a 1-bit bmp image in Matlab using imwrite or any other function. the default of imwrite for bmp is 8-bit. Thanks a lot :) ...

Get content (images) from above webscope

I am creating an online service where "special users" can upload their images. It is very important that the images are not exposed to anyone else than the user who uploaded them. I have heard that the best way to protect the images is to put them over the webscope. So far so good. My problem is that i can't display the images, how is ...

PHP List Images In Folder

I have the following code // Define the full path to your folder from root $path = "../galleries/".$album; // Open the folder $dir_handle = @opendir($path) or die("Unable to open $path"); // Loop through the files while ($file = readdir($dir_handle)) { if(strlen($file)>1){echo "<a href='htt...

Does BMP files have any trailer?

Hello, I have a bmp file. I have read in its header that its size is "56 5A 03" which means 0x035A56. However, every Hex editor that I use to see the contents of that file shows me 0x038000 bytes for this file. My general question is that does bmp file contains a trailer/footer? in the mentioned case, what is the problem? Thanks. ...

Image gallery in UNITY3D

Is it possible to create an Image gallery similar to this : http://www.west-wind.com/rick/photoalbum/demoMaui2006/Default.aspx?Admin=true using Unity3d. I know it is possible to click, drag images and save them using jQuery. But is there a way to create images dynamically in Unity3d and then load, move, drag and save them? If that sound...

NSView background image composed of 3 different files.

Hi, I'm trying to set a background image of an NSView. (Actually an NSScrollView.) At the moment I'm subclassing drawRect: and I'm using NSDrawThreePartImage to draw the image but there are a few things that are not correct whenever I start scrolling. Here's an image. Are there better ways to draw the images? - (void)drawRect: (NSRect)...

How to cache and retrieve images generated on the fly by an Apache Tomcat Server?

Hi, all, I'm working on a web-app project which involves allowing the user to view several hundred small images of roughly the same size, many of them several times. These images are generated on the fly by passing URL strings (specifying height, width, file format, and content) to a service running on an Apache Tomcat server; the URL s...

How can I add metadata to an image?

Where does one insert meta data into and image file and what it the mark up to do so? i want to do this with php. ...

How can I delay the loading of CSS background images?

I am animating sprites in a HTML/JavaScript game by showing/hiding/repositioning many divs, each with a CSS background image. I'd like to load some of the images only when they are first needed, rather than loading them all when the page is first loaded. Will setting them all to "display:none" initially and then showing/hiding them wit...

Coldfusion forms and image upload with cffile

I'm learning some Coldfusion, and I'm having trouble with this small form based application I'm building for a coworker. Here is the first page: http://pastebin.com/aLPYHPsF As you can see, what I want to do is get the user input and take that input and output it to html. The text stuff works fine, but I can't get the image to upload! ...

Using PHP function include() to include a png image.

Ok people, despite the best-known-practices, today I decided to do this: <img src='<? include("dir/dir/img.png"); ?>'> With 6 diferent .png images. Sadly, only 2 of the 6 were nicely visible on the browser. Why only 2 of the 6 images were shown? Maybe there were data losses bits on the way? Thank you for your time :] ...