I have no idea what you're trying to do (or describe).
Let me make clear.
Yes please.
So what you want to do is let the user draw an image on the screen using a finger, and then convert the image to a file, and send the file using Base 64 encoding over Internet as pure ASCII to a back end web server?
Try breaking the problem down to isolated generic tasks and there should be plenty of suitable tutorials and code samples available out there.
Capturing signature is not a problem. What I want to do is to convert the captured content(technically, NSData) to a 3-bytes ASCII format for the signature capture. Also I need to send the content to web-server for storage of signature there
What I want to do is to convert the captured content(technically, NSData) to a 3-bytes ASCII format for the signature capture.
3 Bytes ASCII Format is kinda format for Capturing Signature. Please find the attached document.
Exactly what is your question?
Are you asking us to write code for you that produces this format?
There seems to be enough information in that document for you to do this yourself. Especially since you haven't given any information on what your list of points or your NSData looks like.
The 3-byte-ASCII format itself is specialized to record a series of XY vectors. So you take the data you already have, and convert it to produce the documented format.
If you don't know what format your NSData bytes are, then you should work on that first. If you do know what the NSData bytes are, then the very least you need to do before anyone here can help you, is tell us what the data is. We can't read your mind. We can't see your screen. We can't open your files.
If you can't do any of that, then you should probably review the fundamentals of Cocoa and Objective-C before starting this task.
Thanks chown,
Actually I was looking for any availability of third party libraries already done. As I was not an expert in Objective-C, I was struggling with this... any basic idea how to go with this... Else, thanks a lot for your replies..
Actually I was looking for any availability of third party libraries already done.