Author Archives: Saqib Razzaq

Recognition of "Royal Mail 4-state Customer Code" added in Aspose.BarCode for Java

We have recently released a new version of Aspose.BarCode for Java v2.4. “Royal Mail 4-state Customer Code” barcode recognition is added in this version, with some other bug fixes.

For download and release notes, please visit http://www.aspose.com/community/files/72/java-components/aspose.barcode-for-java/default.aspx.
Continue Reading
Posted in Aspose.BarCode Product Family |

EMF Image Format Now Supported in Aspose.BarCode for .NET

We are pleased to announce the release of Aspose.BarCode for .NET v3.7. In this version, we added support of saving barcode images in EMF format (Vector graphics). 

Sample code for generating and saving the barcode in EMF format:
// Initialize barcode builder
BarCodeBuilder builder = new BarCodeBuilder(“test-123”, Symbology.Code128);
// Save barcode image in EMF format
builder.SaveAsEmf(“test.emf”);

We also introduced generation of two new barcode symbologies (Royal Mail 4-state Customer Code and Vehicle Identification Number). Some bug fixes were also included.

For
Continue Reading
Posted in Aspose.BarCode Product Family |

Access Notes Information from MS Outlook PST Files with Aspose.Network for .NET

We are pleased to announce the release of a new version of Aspose.Network for .NET v5.8. API for accessing Notes information from Outlook PST has been added in this version. You can get the list of notes in a collection and get subject, body, creation date, color etc of each individual note.

Sample code to get all notes from PST:
// load the Outlook PST file
string strBaseFolder = @”C:\Emails\”;
string strPSTFile = @”PersonalFolders.pst”;
PersonalStorage pst = PersonalStorage.FromFile(strBaseFolder + strPSTFile);
Continue Reading
Posted in Aspose.Email Product Family |

Access MS Exchange Server Public Folders using Aspose.Network for .NET

We are pleased to announce the release of a new version of Aspose.Network for .NET v5.7. We added support for reading Public Folders from Microsoft Exchange Server and downloading messages from folders/sub-folders. Below is the simple C# code for getting the list of all public folders: // Connect to Exchange Server.

NetworkCredential credential = new NetworkCredential(username, password, domain);
ExchangeWebServiceClient client = new ExchangeWebServiceClient(mailboxURI, credential);
// Get list of public folders
ExchangeFolderInfoCollection folders = client.ListPublicFolders();
// Display folder name and sub-folder 
Continue Reading
Posted in Aspose.Email Product Family |

RM4SCC, ItalianPost25 and IATA2of5 Barcode Symbologies Added to Aspose.BarCode for JasperReports 1.3

We are pleased to announce the release of Aspose.BarCode for JasperReports v1.3. Three new barcode symbology types are added in this version (RM4SCC, ItalianPost25 and IATA2of5).

Continue Reading
Posted in Aspose.BarCode Product Family, Saqib Razzaq |

Royal Mail 4-state Customer Code Barcode Symbology Added to Aspose.BarCode for Reporting Services

We have recently released a new version of Aspose.BarCode for Reporting Services v2.3. It now supports rendering of “Royal Mail 4-state Customer Code” barcode symbology on reports.

Continue Reading
Posted in Aspose.BarCode Product Family |

Aztec 2D Barcode Recognition now supported by Aspose.BarCode for Java

We are pleased to announce the release of Aspose.BarCode for Java v2.3, which now includes support for Aztec 2D barcode recognition. “Royal Mail 4-state Customer Code” barcode generation is also added in this version.

Continue Reading
Posted in Aspose.BarCode Product Family |

MSG and PST Feature Improvements in Aspose.Network for .NET

We recently released a new version of Aspose.Network for .NET v5.6. Several MSG and PST related features were improved in this version, including addition of EntryID property for messages and folders in PST file, some bug fixes while extracting messages from PST, handling non-English characters in EML to MSG conversion etc.

Continue Reading
Posted in Aspose.Email Product Family |

Aspose.Network for .NET supports accessing Outlook Contacts Information from PST file

We have recently released a new version of Aspose.Network for .NET v5.5. It now supports accessing Contacts information from PST files and saving a contact to disk in MSG format.

Sample code:
// load the Outlook PST file
PersonalStorage pst = PersonalStorage.FromFile(@”Outlook-File.pst”);
// Get the Contacts folder
FolderInfo folderInfo = pst.GetFolder(“Contacts”);
// loop through all the contacts in this folder
MessageInfoCollection messageInfoCollection = folderInfo.GetContents();
foreach (MessageInfo messageInfo in messageInfoCollection)
{
      // Get the contact information
    
Continue Reading
Posted in Aspose.Email Product Family |

Aztec Barcode Recognition Support Added in Aspose.BarCode for .NET 3.6.1

We have just released Aspose.BarCode for .NET hotfix v3.6.1. It supports reading Aztec barcodes. Sample code:

// read or decode Aztec barcode
BarCodeReader reader = new BarCodeReader(“aztec.png”, BarCodeReadType.Aztec);
while (reader.Read() == true)
{
      // display the detected codetext
      Console.WriteLine(“Codetext: ” + reader.GetCodeText());
}
// close the reader
reader.Close();

Some bugs were also fixed in this hotfix. For release notes and download, please visit http://www.aspose.com/community/files/51/.net-components/aspose.barcode-for-.net/default.aspx.
Continue Reading
Posted in Aspose.BarCode Product Family |