Vertical Signature Appear on Document

On some pdf we are getting sing vertically, can you please look into it. Attaching the sample pdf file for referance.
SampleVertical_Sign.pdf (272.2 KB)

@lkendre

Can you please provide more details about the code you are using to add the signature and the specific issue you are encountering with the vertical signature?

we are using following code.

for (int PageCnt = 1; PageCnt <= NumberofPageInFile; PageCnt++)
    {
        double xpos = 0, ypos = 0; int pageNumber = 0;
        string[] RectPos = strlist[0].Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
        pageNumber = Convert.ToInt32(RectPos[0]);
        xpos = Convert.ToDouble(RectPos[1]);
        ypos = Convert.ToDouble(RectPos[2]);
 
        PageSize size = pEdit.GetPageSize(PageCnt);
 
        ypos = GetYPosition(size.Height, ypos);
        xpos = GetXPosition(size.Width, xpos);
 
        if (size.Height > pEdit.GetPageSize(1).Height)
        {
            if (Convert.ToDouble(RectPos[2]) <= 100)
            {
 
                ypos = ypos + (size.Height - pEdit.GetPageSize(1).Height);
            }
 
            ypos = ypos - (size.Height - pEdit.GetPageSize(1).Height);
 
            if (ypos < 0)
            {
                ypos = System.Math.Abs(ypos);
            }
        }
        else if (size.Height < pEdit.GetPageSize(1).Height)
        {
            if (Convert.ToDouble(RectPos[2]) <= 100)
            {
 
                ypos = ypos + (pEdit.GetPageSize(1).Height - size.Height);
            }
 
            ypos = (pEdit.GetPageSize(1).Height - size.Height - ypos);
 
            if (ypos < 0)
            {
                ypos = System.Math.Abs(Convert.ToDouble(ypos));
            }
        }
 
        System.Drawing.Rectangle rect = new System.Drawing.Rectangle(Convert.ToInt32(xpos) + 10, Convert.ToInt32(ypos + 5), 150, 40);
 
 
        using (MemoryStream ms = new MemoryStream())
        {
            bitMapImage.Save(ms, ImageFormat.Png);
 
            pdfSign.SignatureAppearanceStream = ms;
            pdfSign.BindPdf(Destination);
            pdfSign.Sign(PageCnt, true, rect, signature);
            pdfSign.Save(Destination);
        }
    }

Request you to please reply asap , as this issue impacting on our client business.

@lkendre

We tried to use your code snippet but it was giving runtime errors. Can you please share complete sample code (minimal) that can be used to replicate the issue? We will further proceed to assist you accordingly.

Its difficult to send whole code as its application size is big. Attaching the pdf file where we get the signature vertically. Please try signing on the attached file.
Rate Contract Madan Electro (1).pdf (125.1 KB)

@lkendre

Looks like the pages inside PDF document are rotated on an angle due to which the signatures are being added vertically.

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PDFNET-59106

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.