Ši mokymo programa padeda suprasti, kaip sukurti PDF dokumentą naudojant NET REST API. Išmoksite sukurti PDF kūrėją su C# Low Code API, sukurdami naują PDF failą ir pridėdami prie jo teksto. Pateikiami išsamūs žingsniai ir kodo pavyzdys, kaip dirbti su šia funkcija.
Būtina sąlyga
- Sukurti paskyros API kredencialus
- parsisiųsti Aspose.PDF Cloud SDK for Dotnet
- Nustatykite C# projektą naudodami aukščiau pateiktą SDK
Veiksmai, kaip sukurti PDF naudojant C# REST API
- Nustatykite API kliento ID ir kliento paslaptį
- Sukurkite PdfApi klasės egzempliorių su kliento kredencialais
- Sukurkite naują PDF failą naudodami PutCreateDocument API skambutį
- Sukurkite pastraipą ir nustatykite joje tekstą naudodami Segment ir TextLine klases
- Pridėkite pastraipą prie naujai sukurto PDF failo pirmame puslapyje naudodami PutAddText metodą
- Atsisiųskite galutinį PDF failą ir išsaugokite jį sraute
- Išsaugokite išvesties PDF failą vietiniame diske
PDF Creator programinės įrangos kodas su C# Low Code API
using System; | |
using System.IO; | |
using Aspose.Pdf.Cloud.Sdk.Api; | |
using Aspose.Pdf.Cloud.Sdk.Model; | |
using System.Collections.Generic; | |
namespace Aspose.PDF.Cloud.Examples.Kb | |
{ | |
public class PdfTasks | |
{ | |
public static void CreatePDF() | |
{ | |
try | |
{ | |
PdfApi pdfApi = new PdfApi("Client ID", "Client Secret"); | |
DocumentResponse response = pdfApi.PutCreateDocument("newPdfFile"); | |
if (response != null && response.Status.Equals("OK")) | |
{ | |
Paragraph para = PrepareParagraph("This is first text for new PDF"); | |
pdfApi.PutAddText("newPdfFile", 1, para); | |
var stream = pdfApi.DownloadFile("newPdfFile", null, null); | |
using (var fileStream = File.Create("output.pdf")) | |
{ | |
stream.Seek(0, SeekOrigin.Begin); | |
stream.CopyTo(fileStream); | |
} | |
} | |
} | |
catch (Exception ex) | |
{ | |
System.Diagnostics.Debug.WriteLine("error:" + ex.Message + "\n" + ex.StackTrace); | |
} | |
} | |
private static Paragraph PrepareParagraph(string text) | |
{ | |
List<TextLine> textLines = new List<TextLine>(); | |
Segment segment = new Segment(Value: text); | |
List<Segment> segments = new List<Segment>(); | |
segments.Add(segment); | |
TextLine textLine = new TextLine(Segments: segments); | |
textLines.Add(textLine); | |
Rectangle rectangle = new Rectangle(50.0, 800, 300.0, 850); | |
Paragraph paragraph = new Paragraph(Lines: textLines, Rectangle: rectangle); | |
return paragraph; | |
} | |
} | |
} |
Šis kodo fragmentas leidžia sukurti PDF dokumentą internete naudojant C# Low Code API. Galite pateikti failo pavadinimą ir pastraipą, kurioje yra šiek tiek teksto, naudodami Aspose.PDF REST API SDK. Galiausiai atsisiųskite išvesties PDF failą su nurodytu tekstu, kad išsaugotumėte jį vietoje.
Naudokite aukščiau pateiktą PDF generatorių su bet kokiomis be kodo arba mažo kodo programomis bet kurioje aplinkoje, palaikančioje šį SDK.
Šioje temoje paaiškinama PDF failo konvertavimo į Word dokumentą funkcija, kuri taip pat gali būti naudinga: Konvertuokite PDF į DOC naudodami NET REST API.