We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
20230913_Le_Rados.docx
Here 's the code
XWPFParagraph para = resultPhoto.Table.GetRow(resultPhoto.Row).GetCell(resultPhoto.Col).GetParagraphArray(0); para.Alignment = ParagraphAlignment.LEFT; para.SpacingAfter = 0; para.SpacingAfterLines = 0; para.SpacingBefore = 0; para.SpacingBeforeLines = 0; para.SpacingBetween = 1; XWPFRun r = para.CreateRun(); using (MemoryStream ms = new MemoryStream()) { //pic.Resize(resized.Width, resized.Height); pic.Write(ms); ms.Position = 0; r.AddPicture(ms, (int)PictureType.PNG, picName, widthEmus, heightEmus); }
In the resulting file when we try to rotate the picture only the frame is moving
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NPOI Version
File Type
Upload the Excel File
20230913_Le_Rados.docx
Reproduce Steps
Here 's the code
Issue Description
In the resulting file when we try to rotate the picture only the frame is moving
The text was updated successfully, but these errors were encountered: