pdfwindows-phone-8.1winrt-xamlwin-universal-appcomponentone

Pdf generation using component one library in Arabic language


I have generated pdf in a required format in english but when I switch my ui to arabic language and generate pdf it generates mirrored image in pdf.

I have used this tutorial to generate pdf. Anyone know why it is not working in arabic language


Solution

  • End up checking for language and then flipping my image like this.

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