我在我的 iPhone 应用程序的 MFMailComposeSheet 的消息正文中嵌入了一个用户图像。
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>"];
要求格式如下:
但是嵌入的图像以其实际大小显示,我需要以 57x57 像素显示。如何将图像的宽度和高度固定为 57x57?