photo

How to Get iPhone Video or Photo's Geotag? Using UIImagePicker

I am building an app that allows user to pick videos/photos from camera or photo library. If picked from photo library, is it possible to access to the video or photo's geotag? Thanks! ...

Generate strip/grid from photo in .NET

Is there any component available for generating image strips and grids from single photo? ...

Cooliris wall fed by Picassa web albums?

I am trying to expose picassa web album by using Picassa web albums. Following example creates wall with only 2 pictures which represents 2 album main photos: <object id="o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="450"> <param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf" /> <param...

can i take photos on-the-fly (from pc/mac) with a camera ?

i have two cameras fuji finepix S1000fd and canon powershot a470. and my question is, if i can (on my pc) see the objective of the camera and take photos directly from my pc/mac ... thank ya all ...

Android Image Capture Saving Small Sizes on Milestone

I've written a simple app that opens the camera and supplies a path for saving any captured images. The code basically looks like this: File file = new File( Environment.getExternalStorage() + "myimages/", "my_image.jpg" ); Uri outputUri = Uri.fromFile( file ); Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTU...

PrettyPhoto annd youtube videos overlay

Hello, I have a webpage with prettyPhoto and a youtube video inside the web page. With jquery I do: $("#youtubevideo embed").attr("wmode", "opaque"); also tried $("#youtubevideo embed").attr("wmode", "transparent"); In firefox image is over the youtube video, but the corners of pretty photo are missing. Not really missing becaus...

PHP - Upload a web hosted photo to facebook album via Graph API

Hi I'm trying to upload www hosted (e.g. http://www.google.se/intl/en_com/images/srpr/logo1w.png) files to a facebook album. Creating an album works just fine, but I don't seem to uploading any photos. I'm using the facebook php-sdk ( http://github.com/facebook/php-sdk/ ) and the examples I already tried are: http://stackoverflow.com/...

detect if contact has photo

ive got an imageview which im displaying a contacts picture using a uri which always looks similar to this: content://com.android.contacts/contacts/34/photo how would i be able to detect whether this photo exists, as if it doesnt then i want to use a placeholder instead (stored in my drawable folder). at the moment it just shows a ...

Like a friend's photo

Hi, How to support "like friends photos" for Facebook user using Facebook APIs or FQLs? Thanks in advance. Regards, Deepa ...

How do I allow an iPhone user to "Move and Scale" a photo that has already been selected.

I am trying to replicate the functionality that users see when they go into edit mode for a contact for which they have already selected a photo, and then click that contact's photo. An action sheet slides up, with options including "Take Photo", "Choose Photo", and "Edit Photo". When you select "Edit Photo", a view comes up that shows...

How can you upload photos from android gallery to server?

Hello, I am writing an android application in which users can pick a photo from their gallery and upload it to a server. How should I accomplish this ? The application mainly uses SOAP webservices to communicate with the server, but I do not know how to serialize a stream of bytes in KSOAP and therefore I need some help. The solution sh...

How does ABPersonViewController work for processing photo data?

Through ABPersonViewController we can edit contact's photo. Then How can we access the photo info by other way? However, we got ABPerson's image data as the big original picture but not the clip photo data as the ABPersonViewController show. Then what should we do? ABPersonCopyImageData, next? ...

Creating photo albums

How do you create a photo album coding an iphone app that appears in the photo albums that sync to iPhoto? I can read and write media using the various classes (eg UiImagepickerController)no problems. Just wondering if that extends to being able to create albums also. ...

load photo from device in iOS4

Hi,guys. i want to load "amount of UIImages" from PhotoAlbum at a time and display on the UIView. in iOS3 ,it may like : NSString *file_path = @"/var/mobile/Media/DCIM/100APPLE/" NSArray *imageSource = [fileManager contentsOfDirectoryAtPath:file_path error:nil] ; UIImage *image = [UIImage imageWithContentsOfFile:[imageSource objectAt...

import pictures from the iphone photos storage to page body background within a uiwebview

I have a app that uses the uiwebview to display a web page from the resource bundle.I want the user to be able to choose a picture with the photo picker or camera and display it as the page body background.I suppose i will need some objective c interacting with some javascript in the page......Thanks in advance for any help.......Len K ...

iOS photo library totaly changed

Hello All. Till iPhone OS 4 I have red /var/mobile/Media/DCIM/APPLE100 JPG files and extracted exif information such as location, thumbnails and other. In the iOS4 situation totally changed. The JPGs disappeared and I have no idea where to get locational information an open pictures. Give me your light, please. ...

How do you square an uploaded photo without padding with white space, in C#?

In my site, users can upload photos. I currently compress and resize the photo to make sure they aren't huge files. But this creates photos that are of varying dimensions... which makes the site a bit "ugly" in my opinion. I'd like to ensure the thumbnails are square images, but not by using padding. It's ok if there is some loss of the...

Upload photos to website from a text to a 1-800 number from mobile phone

I need the ability for someone to send a text with a photo attached to a 1-800 number from their mobile phone, and have that image uploaded/sent to a website. I'm at a bit of a loss on where to start with this. Can anyone point me in the right direction or let me know what would be involved and how to get started? Any insight is appre...

ANDROID ACTION_VIEW showing the wrong image from URI

I have an Android application that allows the user to select a photo that has already been taken. Once the user selects a photo, I grab the URI information for that photo, use that information to create a bitmap, and then I set the bitmap in an ImageView. This all works perfectly fine. I then give the user the option to select the pict...

Android MediaStore setting photo name to NULL

I have an app that allows the user to take and save a new picture using the Intent ACTION_IMAGE_CAPTURE. After the user accepts the newly taken picture, I create a ContentValue object to set the picture information, and then I insert the picture into the MediaStore and send a broadcast so that the user can see the photo when opening a pi...