0
我在我的iPhone應用程序中將用戶圖像嵌入到MFMailComposeSheet 的消息正文中。如何使用iphone中的MFMailComposeViewController在郵件編輯器中調整嵌入圖像的幀大小
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?
你試過設置'width'和'height'在'img'標籤? – rckoenes
你有沒有聽說過在你的問題中使用大寫字母,如果你期望好的答案至少有curtesy讓你的問題儘可能可讀。 – dngfng
謝謝@ rckoenes – user1645721