文本层穿插空格样式效果没有了

1.源psd文件:
满减.zip (27.2 KB)

2.源代码:
public static void main(String[] args) throws FileNotFoundException
{
try {
License license = new License();
String licFileDir = “E:\mysite\openproj\Aspose.PSD-for-Java\Examples\src\main\resources\Lic\Aspose.Total.Product.Family.lic”;
license.setLicense(licFileDir);
String dataDir = “E:\mysite\openproj\Aspose.PSD-for-Java\Examples\src\main\resources\PSD\”;
Cache.setCacheFolder(dataDir);
// Set cache on disk.
Cache.setCacheType(CacheType.CacheInMemoryOnly);
// The default cache max value is 0, which means that there is no upper limit
Cache.setMaxMemoryForCache(1073741824); // 1 gigabyte
// We do not recommend that you change the following property because it may greatly affect performance
Cache.setExactReallocateOnly(false);
String sourceFileName = dataDir + “满减.psd”;
String exportPath = dataDir + “满减New.png”;
PsdLoadOptions loadOptions = new PsdLoadOptions();
loadOptions.setLoadEffectsResource(true);
PngOptions options = new PngOptions();
options.setColorType(PngColorType.TruecolorWithAlpha);
long startTime = System.currentTimeMillis(); //获取开始时间
PsdImage image = (PsdImage) Image.load(sourceFileName, loadOptions);

        image.save(exportPath,options);
        long endTime = System.currentTimeMillis();    //获取结束时间
        System.out.println("程序运行时间:" + (endTime - startTime)/1000 + "s");    //输出程序运行时间
    } catch (Exception e) {
        e.printStackTrace();
        log.error("message:" + e.getMessage());
        System.out.println("e:" + e.getMessage());
    }
}

3.实际输出:
满减New.png (19.8 KB)

4.期望结果:
满减expect.png (20.6 KB)

@jsczxielong

为了进一步调查此问题,我们创建了ID为PSDJAVA-335的票证,以进一步调查和解决此问题。 该线程已与问题联系在一起,因此一旦问题解决,您可能会收到通知。

两个月前反馈的问题,追踪记录,到现在都还没修复,不知道录入的这些问题ID是否真实?冒昧问下

我们正处于本月发布Java版本的阶段。 之后,我们将专注于Java中报告的API问题。