Wmf to png issue "that is " symbol in wmf file not recognized

We had licensed version Aspose.Imageing 17.9 in java. Using this version attached wmf file not converting proper in png. Getting opt png file as blank.

Also we tried with latest version Aspose.imaging 22.12 in java, there also we are not getting expected out.

Input put and out put file enclosed here in zip format. image.zip (922 Bytes)

code :
public void convertWMFToPNG(File wmfFile,File pngFile) {
try (Image image = Image.load(wmfFile.getAbsolutePath()))
{
PngOptions imageOptions = new PngOptions();
WmfRasterizationOptions rasterizationOptions = new WmfRasterizationOptions();
rasterizationOptions.setPageWidth(image.getWidth());
rasterizationOptions.setPageHeight(image.getHeight());

			imageOptions.setVectorRasterizationOptions(rasterizationOptions);

		image.save(pngFile.getAbsolutePath(), imageOptions);
	} 
}

Please guide solution for that.

Hello, @nitinchopkar.
Thank you for using Aspose.Imaging.
I will check this issue out and give a response.

@nitinchopkar
This issue was resolved in Aspose.Imaging for Java 23.2.

But we didn’t found that version 23.2 , How do i get maven dependency for this version?
see screen short of aspose.com site where shown list of version up to 22.12
image.png (92.1 KB)

We are in a process of releasing it.