GroupDocs.Conversion for .NET 23.8 Release Notes

There are 5+ features, improvements, and bug fixes in this release.

Full list of changes in this release

KeyCategorySummary
CONVERSIONNET‑6237FeatureImplement conversion to EPS format
CONVERSIONNET‑5300EnhancementConverting DWG to PDF takes a lot of time if the Grayscale option is turned on
CONVERSIONNET‑6263EnhancementImprove the performance of the IsPasswordProtected property
CONVERSIONNET‑6269FixConverting to DWG failed with “The file is corrupt or damaged.” message in .NET framework
CONVERSIONNET‑6001FixThe GetDocumentInfo method returned incorrect result for password-protected PPT and Excel files
CONVERSIONNET‑5743FixWhen converting a particular EPUB document to HTML the resulting HTML document contained only two pages

Major features

  • Conversions to EPS
  • Fixed conversions from DWG in .NET framework
  • Fixed conversion from EPUB

Conversion to EPS format

To convert any of the supported file types to the Encapsulated PostScript (EPS) file type, just specify it in the Format property of the PageDescriptionLanguageConvertOptions class instance:

// Load the source DOCX file
using (var converter = new GroupDocs.Conversion.Converter("sample.docx"))
{
    // Set the convert options
    var options = new PageDescriptionLanguageConvertOptions()
    {
        Format = PageDescriptionLanguageFileType.Eps
    };
    // Convert to EPS format
    converter.Convert("converted.eps", options);
}

Public API and backward incompatible changes

None