0

Is it possible to add a date/time to an image which is taken from Android/iOS/Windows Phone/Blackberry using phonegap.

Our apps is used to add a date for every image which taken from our app, so whenever i am taking a picture form my app using phonegap, i want to add a date for that image on the fly. Just want to know this is possible in phonegap for Android/WP7/iOS/Blackberry.

In phonegap if we cant acheive, atleast it is possible to acheieve in native for all platforms(android, WP7, iOS, Blackberry).

Find the attached image with caption at below right corner. Kindly give a suggestion in which way we acheive this via native in all platform or we can do in phonegap itself.

enter image description here

krrr25
  • 681
  • 2
  • 12
  • 29

1 Answers1

0
    <!DOCTYPE html>
    <html>

    <style>
    .image {
        position:relative;
    }
    .image .text {
        position:absolute;
        bottom:10px;
        right:540px;
        width:300px;
    }
    </style>

    <body>
    <tr>
    <div class="image">
      <img alt="" src="http://www.w3.org/html/logo/img/class-header-css3.jpg" />
      <div class="text">
        <p>21/8/13</p>
      </div>
    </div>
    </tr>

    </body>
    </html>
Amit Prajapati
  • 13,525
  • 8
  • 62
  • 84
  • I think your not understand my question, i am asking this kind of image with date on the fly while shoot a image from a phone. Not to append to an existing image. – krrr25 Aug 21 '13 at 09:31
  • 1
    you can't you must require custom camera plugin for this all platform Android/iOS/Windows Phone/Blackberry – Amit Prajapati Aug 21 '13 at 09:43
  • You mean we can do with custom camera plugin in native code ??? What is custom camera plugin??? Please share some reference if you have for all platforms. Its helps me lot... – krrr25 Aug 21 '13 at 09:52
  • there is not in build plugin for custom camera you need to develop by your self for every platform or you can update the camera plugin of phonegap – Amit Prajapati Aug 21 '13 at 09:57
  • http://stackoverflow.com/questions/13154888/how-to-make-a-single-image-of-current-date-as-text-and-camera-captured-image-in – Amit Prajapati Aug 21 '13 at 10:00