DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42999>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=42999 ------- Additional Comments From [EMAIL PROTECTED] 2007-07-30 06:11 ------- Hi, The bug is in org.apache.poi.hssf.model.ConvertAnchor. This object is responsible for converting HSSF anchors to the corresponding low-level escher record. There is an extra check which cause dx1 ans dx2 to be swapped if dx1>dx2: ... anchor.setDx1( (short) Math.min(a.getDx1(), a.getDx2()) ); anchor.setDy1( (short) Math.min(a.getDy1(), a.getDy2()) ); ... It does make sense for child anchors - you can't have dx2>dx1 in a child anchor. For client anchors it is extra and can be safely removed. I will commit the patch shortly. Regards, Yegor -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
