Class Signature
Class Signature
Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll
Aspose.Pdf.Plugins.Signature 플러그인을 나타냅니다.
public sealed class Signature : IPlugin
상속
구현
상속된 멤버
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
예제
이 예제는 PDF 문서에 서명하는 방법을 보여줍니다.
// Signature 생성
var plugin = new Signature();
// 지침을 설정하기 위한 SignOptions 객체 생성
var opt = new SignOptions(inputPfx, inputPfxPassword);
// 입력 파일 경로 추가
opt.AddInput(new FileDataSource(inputPath));
// 출력 파일 경로 설정
opt.AddOutput(new FileDataSource(outputPath));
// 프로세스 수행
plugin.Process(opt);
생성자
Signature()
public Signature()
메서드
Process(IPluginOptions)
지정된 매개변수로 Aspose.Pdf.Plugins.Signature 처리를 시작합니다.
public ResultContainer Process(IPluginOptions options)
매개변수
options
IPluginOptions
Aspose.Pdf.Plugins.Signature를 위한 지침을 포함하는 옵션 객체입니다.
반환값
작업 결과를 포함하는 ResultContainer 객체입니다.