how to search for an image in iphone - iphone

hii,
how can i programmatically search for an image in iphone.
as i am developing the application like that which would browse for the image in iphone.

If you need to get the imaes stored in the photo library you can easily do it by using a UIImagePickerController.
http://developer.apple.com/iphone/library/documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

Related

How to retrieve images path from database and display images path in thumbnail like photo gallery in iphone

I am new to iPhone programming.I have stored images path in database.Now i want to retrieve that images path and after that using that path i want to display images in thumbnail,like photo gallery images.And i can able retrieve that images path from database,i have stored that images path in array,now i want to display all images in thumbnail how to do this.Can any body help me.
Thanks
For iOS 6 and above I would suugest to use UICollectionView and PSTCollectionView.
The goal is to use PSTCollectionView on iOS 4/5 as a fallback and switch to UICollectionView on iOS6. We even use certain runtime tricks to create UICollectionView at runtime for older versions of iOS. Ideally, you just link the files and everything works on older systems.
Otherwise ,use AQGridView OR ZZGridView

iphone built in gallery viewer

In my application I have a list of UIImages downloaded from web. I need to create a gallery where these images can be rotatable, zoomable and swap to view the next and previous. Is there a way to open images in iphone built in gallery viewer. or I will have to make it all through.
The functionality is known as UIImagePickerController.
Check this for more details :
http://zcentric.com/2008/08/28/using-a-uiimagepickercontroller/

Is it possible to add caption to an image using phonegap?

I'm trying to understand if phonegap can be used for local image manipulation. I'm looking to add a caption to an image from the camera roll and save the modified copy back in the camera roll. For example I might have a picture of a cat in phone. I want to open it, add some lolcats style text and save the modified copy in the camera roll.
Is it possible to achieve this in phonegap?
Thanks
You can use HTML5 Canvas to update the images and save it locally in your application space. However saving the image to the phone album is not straight forward. You may need to look at the below post to get the proper solution.
How Can I Save An Image To An iPhone Photo Gallery Using PhoneGap?
This post will help you open the album image to canvas
CameraRoll image to canvas using Phonegap

Integrate Photo Gallery + iPhone

I am making an app in which on one of the view I want to display photo gallery photos thumbnails. If I click on any image then It must get zoom, there is also accept and delete functionality on zoom view. If user want to delete the photo then It must get delete from the photo gallery. I have tried a lot to implement this functionality but unable to get the required output.
How should I integrate the default photo gallery with my app? Following are the images which make you more clear about the functionality I want to implement. How can I start to make this functionality?
hi there is a good framework which is capable of this
three20
If you want other similar things goto cocoacontrols
Use KTPhotoBrowser
https://github.com/kirbyt/KTPhotoBrowser

Open standard iPhone photo library application from iPhone app

I need to open photo library from my iPhone app just like standard iPhone Camera application does. Is it possible?
I don't want picking-style interface of UIImagePickerController - it has unnecessary controls like "Use" and "Cancel" buttons and does not have full photo library viewing functionality - zooming and sliding between photos etc. My goal is to navigate user to the photo library for viewing photos (with full functionality of viewing photos) and - when user has finished - return to my app - just like standard Camera application does when you preview last-taken photos.
I believe the "Three20"-framework has such a photo library.
http://github.com/facebook/three20
http://github.com/facebook/three20/blob/master/src/Three20UI/Headers/TTPhotoViewController.h
http://icodeblog.com/2009/07/28/getting-images-from-the-iphone-photo-library-or-camera-using-uiimagepickercontroller/
seem like that it is possible to open only 1 photo using UIImagePickerController, can not open multiple photos.