csharp 例如-CSHARP-GroupDocs.Signature.Examples.CSharp的签名,customoutputhandler.cs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 例如-CSHARP-GroupDocs.Signature.Examples.CSharp的签名,customoutputhandler.cs相关的知识,希望对你有一定的参考价值。

// For complete examples and data files, please go to https://github.com/atirtahirgroupdocs/GroupDocs.Signature-for-.NET
const string DevStorageEmulatorUrl = "http://127.0.0.1:10000/devstoreaccount1/";
const string DevStorageEmulatorAccountName = "devstoreaccount1";
const string DevStorageEmulatorAccountKey =
    "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==";

SignatureConfig config = Utilities.GetConfigurations();

// instantiating the signature handler
var handler = new SignatureHandler(config);

SaveOptions saveOptions = new SaveOptions(OutputType.String);
IOutputDataHandler customOutputStorageProvider = new SampleAzureOutputDataHandler(
    DevStorageEmulatorUrl, DevStorageEmulatorAccountName, DevStorageEmulatorAccountKey, "tempbucket");
SignatureHandler handlerWithCustomStorage = new SignatureHandler(config, customOutputStorageProvider);
// setup image signature options
var signOptions = new PdfSignImageOptions("sign.png");
signOptions.DocumentPageNumber = 1;
signOptions.Top = 500;
signOptions.Width = 200;
signOptions.Height = 100;
string fileExtension = Path.GetExtension(inputFileName);
Utilities.SaveFile(fileExtension, inputFileName, handler, null, signOptions, null);

以上是关于csharp 例如-CSHARP-GroupDocs.Signature.Examples.CSharp的签名,customoutputhandler.cs的主要内容,如果未能解决你的问题,请参考以下文章

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndexAsynchronously.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexInMemory.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexOnDisk.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateWithOverwritingExistedIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CustomExtractor.cs