using System;
using System.IO;
using System.Threading.Tasks;
using Accusoft.PrizmDocServer;
namespace Demos
{
class Program
{
static void Main(string[] args)
{
MainAsync().GetAwaiter().GetResult();
}
static async Task MainAsync()
{
var prizmDocServer = new PrizmDocServerClient("https://api.accusoft.com", "YOUR_API_KEY");
// Take a dcm file and convert it to a pdf.
IEnumerable<ConversionResult> results = await prizmDocServer.ConvertAsync("input.dcm", DestinationFileFormat.Pdf);
// Save the result
await results.Single().RemoteWorkFile.SaveAsync("output.pdf");
}
}
}
Want more info on our PrizmDoc Server SDK? View our SDK Documentation to learn more.Not using .NET? View our API Documentation to use our advanced features with other languages.