2011-01-27 17 views
5

私は1つの問題を抱えています。これは、フォーマット.pngのイメージを.pdfファイルに変換する必要があります。解決策を提案してください。iphoneで.pngイメージを.pdfにプログラムで変換する方法

あなたは以下のURLでコードを取得することができ マダンモハン

+0

this- http://stackoverflow.com/questions/1360912/how-can-i-create-a-pdf-file-programmatically-in-an-iphone-applicationあなたがfindoutますを参照してください! –

+0

あなたは.pngファイルの単一のイメージを持っているか、イメージをpdfに変換するイメージのセットを持っていますか? –

答えて

1

が本当にあなたのアプリケーションが正常に動作しますが、私はpdfファイルと表示のUIWebViewへの.tifファイルを変換する必要があります。

+0

ANURAGお知りになりたいことがあれば、どんな解決策があれば教えてください:) – Mangesh

-2
-(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]; 
+2

ここにPDFDocumentとPDFPageとは何ですか? OPはiPhoneの開発について尋ねました。 –

0

使用次のコードは、画像から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(); 
関連する問題