2009-04-17 8 views

Répondre

2

La meilleure façon serait rendre dans un fichier PDF avec le composant (peut être ABCPdf from WebSuperGoo ou toute autre solution)

Doc theDoc = new Doc(); 
theDoc.Rect.Inset(72, 144); 
theDoc.Page = theDoc.AddPage(); 
int theID; 
theID = theDoc.AddImageUrl("http://www.yahoo.com/"); 
while (true) { 
    theDoc.FrameRect(); // add a black border 
    if (!theDoc.Chainable(theID)) 
    break; 
    theDoc.Page = theDoc.AddPage(); 
    theID = theDoc.AddImageToChain(theID); 
} 

for (int i = 1; i <= theDoc.PageCount; i++) { 
    theDoc.PageNumber = i; 
    theDoc.Flatten(); 
} 

theDoc.Save(Server.MapPath("pagedhtml.pdf")); 
theDoc.Clear(); 
Questions connexes