Convert JPG file to PDF file
in C# and VB.Net.
Complete code
using System;
using System.IO;
namespace Sample
{
class Test
{
static void Main(string[] args)
{
// Convert JPG file to PDF file
SautinSoft.PdfVision v = new SautinSoft.PdfVision();
//v.Serial = "XXXXXXXXXXXXXXX";
// specify converting options
v.PageStyle.PageSize.Auto();
// v.PageStyle.PageMarginLeft.Inch(1);
// v.ImageStyle.Heightmm(150);
// v.ImageStyle.WidthInch(10);
v.ImageStyle.JPEGQuality = 90;
string inpFile = Path.GetFullPath(@"..\..\image-jpeg.jpg");
FileInfo outFile = new FileInfo(@"Result.pdf");
// Convert image file to pdf file
int ret = v.ConvertImageFileToPDFFile(inpFile, outFile.FullName);
// 0 - converting successfully
// 1 - can't open input file, check the input path
// 2 - can't create output file, check the output path
// 3 - converting failed
if (ret == 0)
{
// Open the resulting PDF document in a default PDF Viewer.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFile.FullName) { UseShellExecute = true });
}
}
}
}
Imports System
Imports System.IO
Namespace Sample
Friend Class Test
Shared Sub Main(ByVal args() As String)
' Convert JPG file to PDF file
Dim v As New SautinSoft.PdfVision()
'v.Serial = "XXXXXXXXXXXXXXX"
' specify converting options
v.PageStyle.PageSize.Auto()
' v.PageStyle.PageMarginLeft.Inch(1);
' v.ImageStyle.Heightmm(150);
' v.ImageStyle.WidthInch(10);
v.ImageStyle.JPEGQuality = 90
Dim inpFile As String = Path.GetFullPath("..\..\image-jpeg.jpg")
Dim outFile As New FileInfo("Result.pdf")
' Convert image file to pdf file
Dim ret As Integer = v.ConvertImageFileToPDFFile(inpFile, outFile.FullName)
' 0 - converting successfully
' 1 - can't open input file, check the input path
' 2 - can't create output file, check the output path
' 3 - converting failed
If ret = 0 Then
' Open the resulting PDF document in a default PDF Viewer.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFile.FullName) With {.UseShellExecute = True})
End If
End Sub
End Class
End Namespace
If you need a new code example or have a question: email us at support@sautinsoft.com or ask at Online Chat (right-bottom corner of this page) or use the Form below: