Hi I am using below code to post image and I want to apply MD5 hashing in this code

    NSData *imageData = UIImageJPEGRepresentation(imageView.image, 50) ;  ;
    EDAMResource *imageResource  = [[[EDAMResource alloc]init]autorelease];
    EDAMData *imageData1 =[[EDAMData alloc]initWithBodyHash:imageData
                                                       size:[imageData length] body:imageData ];

    [imageResource setData:imageData1];
    [imageResource setRecognition:imageData1];

    NSString *mime = [[[NSString alloc]initWithString:@"image/jpeg" ] autorelease];

    [imageResource setMime:mime];

    NSArray *imageArray = [[NSArray alloc]initWithObjects:imageResource,nil];
    [note setResources:imageArray];

Is to possible to apply md5 hashing in this code and if yes then how could I do this?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

There is some sample code on github from the iPhoneRecipeBook that shows how to handle MD5 hashes for Evernote.

link|improve this answer
Thanks for reply..And if I want to send audio file also then how can I do this..See my question and please help stackoverflow.com/questions/6149056/… – iProgrammer May 30 '11 at 9:28
[self readFileAsData:path ] What should I pass in this method – iProgrammer May 30 '11 at 11:31
As you can see in the source, -dataWithContentsOfFile: is called which requires a file path of the file you wish to read. – Claus Broch May 30 '11 at 12:27
ya i am trying to add imageview.image .NSData *imageData = UIImageJPEGRepresentation(imageView.image, 50) ; How can I pass image.view as string because [readFileASdata take NSString as arugment] – iProgrammer May 30 '11 at 12:30
If I am using above code It is posting image but only thumbnail images is shown in list.when I expand note it will show only text message – iProgrammer May 30 '11 at 12:32
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.