使用阿拉伯语语言的组件一库生成 Pdf

Pdf generation using component one library in Arabic language

我已经生成了英文格式为 required 的 pdf,但是当我将 ui 切换为阿拉伯语并生成 pdf 时,它会生成 pdf 格式的镜像。

我已经使用 this tutorial 生成了 pdf。任何人都知道为什么它不能用阿拉伯语工作

结束检查语言,然后像这样翻转我的图像。

if (!App.IsEnglishSelected)
    {
        wb = wb.Flip(WriteableBitmapExtensions.FlipMode.Vertical);
    }