我正嘗試在UIWebview中載入圖像(PNG)。但我得到了以下錯誤 「」ImageIO:PNGinvalid立方體/長度設置「UIWebview - 正在載入PNG圖像 - 有錯誤
我將從Web服務中獲得」png「,我將它存儲在以下路徑中:」Users/XXX/Library/Application支持/ iPhone模擬器/ 4.3.2 /應用程序/ E4DE3097-EA84-492F-A2A7-5882202F3B00/Documents/attachement.png「
當我從路徑中讀取文件時,出現錯誤。代碼
NSBundle *bundle = [NSBundle mainBundle];
NSString *path = [bundle bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
NSString *commentHtml = [NSString stringWithFormat:@"<img src=\"%@\"/>", documentEntity.path];
NSString *html3 = [NSString stringWithFormat:@"<html><head/><body><div><b>COMMENTS:</b></div>%@</body></html>", commentHtml];
[self.documentView loadHTMLString:html3 baseURL:baseURL];
請幫幫我。
THanks Girija
任何代碼,將有助於更好地理解 – samfisher
正如山姆·費雪說,這是很難幫助沒有代碼。另外:如果您從應用程序包中加載圖片,請將其上傳至您的問題;如果您是從網站加載它,請提供鏈接。你是否嘗試在UIImageView中顯示相同的圖像? –
對於初學者嘗試接受的答案在這裏:http://stackoverflow.com/questions/747407/using-html-and-local-images-within-uiwebview(即:沒有額外的HTML)。看看http://stackoverflow.com/questions/3808451/how-to-embed-local-images-in-uiwebview,http://stackoverflow.com/questions/5329648/display-local-uiimage-on- uiwebview也。 –