Generuję ciąg html zawierający obrazy base64. Gdy narzędzie MFMailComposeViewController jest otwarte, widzę obrazy w wygenerowanej wiadomości e-mail. Kiedy go wyślę i otworzę, obrazy nie są wyświetlane, są tylko puste kwadraty.Wyświetlanie obrazów base64 w e-mailu HTML na IOS
Mój kod
- (IBAction)actionShareByEmail:(id)sender {
if([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
NSString* subject = @"Environments list with qrcode";
[picker setSubject:subject];
[picker setMessageBody:[manager getHtmlWithEnvironments:nil] isHTML:YES];
[self presentViewController:picker animated:YES completion:nil];
}
}
-(NSString*)getHtmlWithEnvironments:(NSArray*)envDictionnaries{
NSMutableString* html = [[NSMutableString alloc]init];
[html appendString: @"<html><body>"];
for (NSDictionary *d in self.arEnvironments) {
UIImage* qrcode = [QRCodeGenerator qrImageForString:[d objectForKey:@"env_name"] imageSize:200.0];//Works fine
NSData *imageData = UIImagePNGRepresentation(qrcode);
NSString *encodedString = [imageData base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength];
[html appendString: [NSString stringWithFormat:@"<H3>%@</h3><img src=\"data:image/png;base64,%@\" width=\"200\" height=\"200\" alt=\"test\" /></br></br>",[d objectForKey:KEY_ENV_NAME],encodedString]];
}
[html appendString: @"</html><body>"];
return html;
}
Jak mogę zrobić, aby wyświetlać obrazy poprawnie?
Co ty oglądasz wiadomości w otwartą? Perspektywy? IOs Mail? Przeglądarka internetowa? Gmail? – Ruskin
Możliwe duplikaty http://stackoverflow.com/questions/8836706/base64-html-embedded-images-not-showing-when-mailed – Ruskin