0

入力データからpdfを生成しようとしています。だから私は私の PdfGenerator() を作成し、それはいくつかのテキストでPDFを作成します:

public class PdfGenerator {

    public PdfGenerator() {
        //Instantiate License class and call its SetLicense method to use the license
        var license = new Aspose.Pdf.License();
        license.SetLicense("Aspose.Total.lic");
    }

    public void Generate(Generation input) {
        //Create pdf document
        var pdf1 = new Pdf();

        //Add a section into the pdf document
        var sec1 = pdf1.Sections.Add();

        //Add a text paragraph into the section
        sec1.Paragraphs.Add(new Text("Hello World"));

        //Save the document
        pdf1.Save(input.Reference + ".pdf", SaveType.OpenInBrowser, HttpContext.Current.Response);
    }
}

これは私の HttpPost メソッドから呼び出されています:

    // POST api/values
    [System.Web.Http.HttpPost]
    public void Post([FromBody]Generation value) {
        _pdfGenerator.Generate(value);
    }

しかし、私は白いページのpdfしか取得しません.なぜ私が間違っているのか分かりますか?

4

1 に答える 1