---
title: "Load a PDF for conversion from remote URL in C# .NET | Nutrient .NET SDK"
canonical_url: "https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-pdf/"
md_url: "https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-pdf.md"
last_updated: "2026-05-21T17:12:02.207Z"
description: "Learn how to convert remote files to various formats like PDF, MS Office, image, bitmap, SVG, and TIFF with our comprehensive guide."
---

# Load a PDF for conversion from a remote URL in C#

### PDF

[PDF](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-pdf.md)

### MS Office

[MS Office](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-office.md)

### Image

[Image](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-image.md)

### Bitmap

[Bitmap](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-bitmap.md)

### SVG

[SVG](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-svg.md)

### TIFF

[TIFF](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-tiff.md)

### More...

[More...](https://www.nutrient.io/guides/dotnet/load-a-file/converter/from-remote-url-more.md)

To load a PDF document for conversion from a remote URL, use the [`LoadFromHttp` method](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureDocumentConverter~LoadFromHttp.html) from the [`GdPictureDocumentConverter` class](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.GdPictureDocumentConverter.html).

`LoadFromHttp` accepts:

- `HttpUri` — A `Uri` pointing to the source document.

- `DocumentFormat` (optional) — A member of the [`DocumentFormat` enumeration](https://www.nutrient.io/api/gdpicture/GdPicture.NET.14~GdPicture14.DocumentFormat.html). For PDF input, use `DocumentFormat.DocumentFormatPDF`.

`LoadFromHttp` returns a `GdPictureStatus`, which should always be checked before conversion.

To load and convert a PDF document from a remote URL, use the following code:

### C#

```csharp

using GdPicture14;
using System;

using GdPictureDocumentConverter converter = new GdPictureDocumentConverter();

Uri fileUri = new Uri("https://pspdfkit.com/downloads/load-a-file/source.pdf");

GdPictureStatus status = converter.LoadFromHttp(fileUri, DocumentFormat.DocumentFormatPDF);
if (status!= GdPictureStatus.OK)
{
    Console.WriteLine($"LoadFromHttp failed: {status}");
    return;
}

// Convert PDF to TIFF.
status = converter.SaveAsTIFF(@"C:\temp\output.tif", TiffCompression.TiffCompressionAUTO);
if (status!= GdPictureStatus.OK)
{
    Console.WriteLine($"SaveAsTIFF failed: {status}");
}

```

### VB.NET

```vb

Imports GdPicture14

Using converter As New GdPictureDocumentConverter()
    Dim fileUri As New Uri("https://pspdfkit.com/downloads/load-a-file/source.pdf")

    Dim status As GdPictureStatus = converter.LoadFromHttp(fileUri, DocumentFormat.DocumentFormatPDF)
    If status <> GdPictureStatus.OK Then
        Console.WriteLine($"LoadFromHttp failed: {status}")
        Return
    End If

    ' Convert PDF to TIFF.
    status = converter.SaveAsTIFF("C:\temp\output.tif", TiffCompression.TiffCompressionAUTO)
    If status <> GdPictureStatus.OK Then
        Console.WriteLine($"SaveAsTIFF failed: {status}")
    End If
End Using

```
---

## Related pages

- [Load a bitmap (BMP) for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-bitmap.md)
- [Load a vector image (SVG) for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-svg.md)
- [Load an image for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-image.md)
- [Load an Office document for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-office.md)
- [Load any file for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-more.md)
- [Load a PDF for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-pdf.md)
- [Load an image for conversion from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-image.md)
- [Load a TIFF for conversion in C#](/guides/dotnet/load-a-file/converter/from-local-storage-tiff.md)
- [Load and convert a bitmap image from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-bitmap.md)
- [Load an image for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-image.md)
- [Load and convert an SVG image from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-svg.md)
- [Load any file for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-more.md)
- [Load a TIFF for conversion from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-tiff.md)
- [Convert documents from remote URLs using C#](/guides/dotnet/load-a-file/converter/from-remote-url-office.md)
- [Load an Office document for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-office.md)
- [Load a bitmap (BMP) for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-bitmap.md)
- [Load any file for conversion from a remote URL in C#](/guides/dotnet/load-a-file/converter/from-remote-url-more.md)
- [Load a PDF for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-pdf.md)
- [Load a vector image (SVG) for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-svg.md)
- [Load a TIFF for conversion from a stream in C#](/guides/dotnet/load-a-file/converter/from-stream-tiff.md)

