I have embeded a user image in message body of MFMailComposeSheet in my iPhone app.
NSMutableString *messageBody = [[[NSMutableString alloc] initWithString:@"<html><body>"] retain];
NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(capturedProfileImage)];
NSString *base64String = [self base64forData:imageData];
[messageBody appendFormat:@"<p> %@.</p>",textMessage];
[messageBody appendFormat:@"<p>REGARDS</p>"];
[messageBody appendFormat:@"<p><b><img src='data:image/png;base64,%@'> </b></p>", base64String];
[messageBody appendFormat:@"<p> %@.</p>",userName];
[messageBody appendFormat:@"<p> %@.</p>",userPhone];
[messageBody appendFormat:@"</body></html>"];
Require format is like as follows:
But the embedded image displayed in its actual size, and I need to display in 57x57 pixels. How do I fix the width and height of the image as 57x57?
Fixed: