私は1つの問題を抱えています。これは、フォーマット.pngのイメージを.pdfファイルに変換する必要があります。解決策を提案してください。iphoneで.pngイメージを.pdfにプログラムで変換する方法
あなたは以下のURLでコードを取得することができ マダンモハン
私は1つの問題を抱えています。これは、フォーマット.pngのイメージを.pdfファイルに変換する必要があります。解決策を提案してください。iphoneで.pngイメージを.pdfにプログラムで変換する方法
あなたは以下のURLでコードを取得することができ マダンモハン
、ありがとうございます。それを通過します........
http://ipdfdev.com/2011/04/22/convert-an-image-to-pdf-on-the-iphone-and-ipad/
が本当にあなたのアプリケーションが正常に動作しますが、私はpdfファイルと表示のUIWebViewへの.tifファイルを変換する必要があります。
ANURAGお知りになりたいことがあれば、どんな解決策があれば教えてください:) – Mangesh
-(void)createPdf:(NSImage*)image
{
PDFDocument *pdf = [[PDFDocument alloc] init];
NSImage *image = [[NSImage alloc] initWithContentsOfFile:fileName];
PDFPage *page = [[PDFPage alloc] initWithImage:image];
[pdf insertPage:page atIndex: [pdf pageCount]];
[pdf writeToFile:path];
}
使用次のように上記の方法:
NSImage *image = [[NSImage alloc] initWithContentsOfFile:PATH_OF_YOUR_PNG_FILE];
[self createPdf:image];
ここにPDFDocumentとPDFPageとは何ですか? OPはiPhoneの開発について尋ねました。 –
使用次のコードは、画像からPDFファイルを作成します。
UIImage* image = [UIImage imageNamed:@"sample.png"];
CGRect frame = CGRectMake(20, 100, 300, 60);
NSString* fileName = @"FileName.PDF";
NSArray *arrayPaths =
NSSearchPathForDirectoriesInDomains(
NSDocumentDirectory,
NSUserDomainMask,
YES);
NSString *path = [arrayPaths objectAtIndex:0];
NSString* pdfFileName = [path stringByAppendingPathComponent:fileName];
// Create the PDF context using the default page size of 612 x 792.
UIGraphicsBeginPDFContextToFile(pdfFileName, CGRectZero, nil);
// Mark the beginning of a new page.
UIGraphicsBeginPDFPageWithInfo(CGRectMake(0, 0, 612, 792), nil);
[image drawInRect:frame];
// Close the PDF context and write the contents out.
UIGraphicsEndPDFContext();
this- http://stackoverflow.com/questions/1360912/how-can-i-create-a-pdf-file-programmatically-in-an-iphone-applicationあなたがfindoutますを参照してください! –
あなたは.pngファイルの単一のイメージを持っているか、イメージをpdfに変換するイメージのセットを持っていますか? –