You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
426 B

using System;
using System.Collections.Generic;
using System.Text;
namespace VOL.Core.Utilities.PDFHelper
{
/// <summary>
/// pdf接口
/// </summary>
public interface IPDFService
{
/// <summary>
/// 创建PDF
/// </summary>
/// <param name="htmlContent">传入html字符串</param>
/// <returns></returns>
byte[] CreatePDF(string htmlContent);
}
}