VintaSoft Barcode .NET SDK Discussions
Questions, comments and suggestions concerning VintaSoft Barcode .NET SDK.
Board index < VintaSoft Barcode < VintaSoft Barcode .NET SDK Discussions
try
{
Pdf = new Vintasoft.Barcode.PdfImageViewer(NomeFile);
}
catch(Exception Ecc)
{
Errore = Ecc.Message;
Pdf.Dispose();
Pdf = null;
return null;
}
if (Pdf.PageCount == 0)
{
Pdf.Dispose();
Pdf = null;
return null;
}
string [] TmpNomiImmagini;
try
{
TmpNomiImmagini = Pdf.GetImageNames(0);
}
catch(Exception Ecc)
{
Errore = Ecc.Message;
Pdf.Dispose();
Pdf = null;
return null;
}
if (TmpNomiImmagini.Length == 0)
{
Pdf.Dispose();
Pdf = null;
return null;
}