Issues with email attachment, PDF and CSV

前端 未结 1 397
小鲜肉
小鲜肉 2021-01-22 05:26

I\'m working with PDF generation,it generated the PDF, viewed using QLPreviewController, all worked fine except mail forwarding, I have two attachments of type .pdf

相关标签:
1条回答
  • 2021-01-22 05:53

    1. Attachment issue

    set mime type as text/csv instead of application/csv or image/csv. code is as shown below

    [mailComposer addAttachmentData:[NSData dataWithContentsOfFile:self.csvFilePath]
                                   mimeType:@"text/csv" fileName:[NSString stringWithFormat:@"csvPage.csv" ]];
    

    1. Size issue

    I struggled a lot.. at last when wrote image in jpeg format to pdf page using below code, size got reduced ten times!!

    UIImage *lowResImage = [UIImage imageWithData:UIImageJPEGRepresentation(plotImage, 0.02)];
    
    0 讨论(0)
提交回复
热议问题