The shadow effects associated with the images are not retained

When utilizing Aspose.NET for converting a PDF containing images with shadows into HTML, the conversion process accurately renders the images; however, the shadow effects associated with the images are not retained in the resulting HTML output
Code snippet:
var htmlOptions = new HtmlSaveOptions
{
ConvertMarkedContentToLayers = true,
FixedLayout = true,
SpecialFolderForAllImages = Path.Combine(SlideFolderPath, “Images”),
//RasterImagesSavingMode = RasterImagesSavingModes.AsEmbeddedPartsOfPngPageBackground,
FontSavingMode = FontSavingModes.AlwaysSaveAsTTF,
AntialiasingProcessing = AntialiasingProcessingType.TryCorrectResultHtml,

        };

@Mrunal07

Have you tested with 24.1 version of the API? Can you please share your sample PDF with us so that we can test the scenario in our environment and address it accordingly?

please find the attached sample pdf.The word SINTOMI and PATIENT JOURNEY are shape image and has shaddow effect.
Page 7 package.pdf (83.9 KB)

@Mrunal07

We tested with 24.1 version of the API and did not notice any issues. The shadow was present in the output HTML. Please check the attached screenshot.
image.png (37.6 KB)

Can you please share the C# code to achieve this.

@Mrunal07

We used same code snippet that you shared. Only the version was 24.1 and 24.2.

var original_book = new Aspose.Pdf.Document(dataDir + @"Page 7 package.pdf");

var htmlOptions = new HtmlSaveOptions
{
    ConvertMarkedContentToLayers = true,
    FixedLayout = true,
    //RasterImagesSavingMode = RasterImagesSavingModes.AsEmbeddedPartsOfPngPageBackground,
    FontSavingMode = FontSavingModes.AlwaysSaveAsTTF,
    AntialiasingProcessing = AntialiasingProcessingType.TryCorrectResultHtml,

};

original_book.Save(dataDir + "Page 7 package.html", htmlOptions);