7

I am new to iPhone programming. Does anyone know how to give custom name to a picture which was taken using the mobile camera? After that the picture has to be saved along with that name in the photo gallery.

Can anyone figure out a solution for this?

Thanks

The X-Coder
  • 497
  • 6
  • 19

2 Answers2

2

Add MetaData to UIImage. Same metadata of UIImage can be used to know images's information.

Refer Get Exif data from UIImage.

Refer UIImagePickerController and extracting EXIF data from existing photos

Community
  • 1
  • 1
Paresh Navadiya
  • 38,095
  • 11
  • 81
  • 132
1

You can't do this. Because iOS saves it with a asseturl. You can't add your meta data along with an image in the photolibrary. And you can only access the photo using assets library.

Midhun MP
  • 103,496
  • 31
  • 153
  • 200