Load file from URL
Leave feedback
The following code snippet shows how to convert a file from an URL:
public static void Run()
{
string url = "https://github.com/groupdocs-conversion/GroupDocs.Conversion-for-.NET/blob/master/Examples/Resources/SampleFiles/sample.docx?raw=true";
string outputFile = Path.Combine("c:\output", "converted.pdf");
using (Converter converter = new Converter(() => GetRemoteFile(url)))
{
PdfConvertOptions options = new PdfConvertOptions();
converter.Convert(outputFile, options);
}
}
private static Stream GetRemoteFile(string url)
{
WebRequest request = WebRequest.Create(url);
using (WebResponse response = request.GetResponse())
return GetFileStream(response);
}
private static Stream GetFileStream(WebResponse response)
{
MemoryStream fileStream = new MemoryStream();
using (Stream responseStream = response.GetResponseStream())
responseStream.CopyTo(fileStream);
fileStream.Position = 0;
return fileStream;
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.