GroupDocs.Conversion for .NET 19.6 Release Notes

Major Features

This regular monthly release contains 5+ new features, improvements and bug fixes. Most notable are: 

  • Conversions from/to Xlam
  • Conversions from Mpx
  • Conversions from Jpc
  • Conversions from Dwt
  • Conversions from JPEG-LS (jls)
  • Improved diagram to word conversions
  • Introduced Metered.GetConsumptionCredit

Full List of Issues Covering all Changes in this Release

KeyCategorySummary
CONVERSIONNET‑3089FeatureImplement conversion from Xlam
CONVERSIONNET‑3091FeatureImplement conversion to Xlam
CONVERSIONNET‑3093FeatureImplement conversion from Mpx
CONVERSIONNET‑3096FeatureIntroduce Metered.GetConsumptionCredit
CONVERSIONNET‑3098FeatureImplement conversion from Jpc
CONVERSIONNET‑3100FeatureImplement conversion from Dwt
CONVERSIONNET‑3113FeatureImplement conversion from JPEG-LS (Jls)
CONVERSIONNET‑3117ImprovementImprove Diagram to Word conversion
CONVERSIONNET‑2839FixPowerPoint with black SmartArt Text gets changed into white text when converted to a PDF

Public API and Backward Incompatible Changes

  1. Added GetConsumptionCredit in GroupDocs.Conversion.Metered This method returns count of credits which were consumed in case of Metered licensing is used.

    /// <summary>
    /// Retrieves count of credits consumed.
    /// </summary>
    
    public static decimal GetConsumptionCredit()
    {
        return MeteredBillingService.Instance.GetCustomerCredit();
    }
    

    Following example demonstrates how to retrieve count of credits consumed:

    ...
    string publicKey = "Public Key";
    string privateKey = "Private Key";
    
    Metered metered = new Metered();
    metered.SetMeteredKey(publicKey, privateKey);
    
    decimal creditsConsumed = Metered.GetConsumptionCredit();
    ...