PDFsharp & MigraDoc Foundation

PDFsharp - A .NET library for processing PDF & MigraDoc Foundation - Creating documents on the fly
It is currently Sat Apr 27, 2024 9:55 pm

All times are UTC


Forum rules


Please read this before posting on this forum: Forum Rules



Post new topic Reply to topic  [ 1 post ] 
Author Message
PostPosted: Fri Sep 26, 2008 3:05 pm 
Offline

Joined: Fri Sep 26, 2008 2:43 pm
Posts: 1
Hi,

I'm trying to get started with PdfSharp in PowerShell, following your "Split Document" sample:

Code:
# Make PdfSharp assembly available in PowerShell
$dll = "E:\Software\PDFsharp\bin\PdfSharp.dll"
[reflection.assembly]::LoadFrom($dll)

# Opening the source document runs smoothly
$in = [PdfSharp.Pdf.IO.PdfReader]::Open("./test.pdf",[PdfSharp.Pdf.IO.PdfDocumentOpenMode].Import)
# yes, I'm using OpenMode Import, not ReadOnly

# Create the destination document
$out = new-object PdfSharp.Pdf.PdfDocument
$out.Version = $in.Version
$out.Info.Title = "Split Document Sample"
$out.Info.Creator = "PowerShell"

# Try to add a page
$out.AddPage( $in.Pages[0] )


This is the point where I'm stuck with the message
Code:
Ausnahme beim Aufrufen von "AddPage" mit 1 Argument(en):  "A PDF document must be opened with PdfDocumentOpenMode.Import to import pages from it."
Bei Zeile:1 Zeichen:11 + $out.AddPage( <<<<  $in.Pages[0] )

:?
Any hint?

_________________
Cheers
Uli


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1 post ] 

All times are UTC


Who is online

Users browsing this forum: Bing [Bot] and 378 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Privacy Policy, Data Protection Declaration, Impressum
Powered by phpBB® Forum Software © phpBB Group