[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #26 from Regina Henschel  ---
(In reply to Stéphane Guillou (stragu) from comment #25)
> Thanks Regina. Could that commit tie into bug 82627 at all, or are the
> issues completely unrelated?

Bug 82627 is completely unrelated. Bug 82627 is about custom shapes in Writer,
where the import from docx adds a bundled text frame and that is unable to
rotate.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #25 from Stéphane Guillou (stragu) 
 ---
Thanks Regina. Could that commit tie into bug 82627 at all, or are the issues
completely unrelated?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||8433

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Regina Henschel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #23 from Regina Henschel  ---
I have uploaded my experiments to
https://gerrit.libreoffice.org/c/core/+/167299
With the code it is easier to discuss the problems.

With the patch, the text is at the correct position in the rotated path
objects. But sometimes more text is shown as in the unrotated path object and
sometimes text is missing. I have no idea what happens in those cases.

I do not even know at all, whether the patch is the correct way to go.
Hopefully Armin has some time to look at the problem.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Regina Henschel  changed:

   What|Removed |Added

 CC||ma_ridin...@yahoo.de

--- Comment #22 from Regina Henschel  ---
*** Bug 44225 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #21 from Mike Kaganski  ---
Created attachment 193958
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193958&action=edit
A screencast of rotation the polyline with a mentioned experimental
zero-rotation change

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #20 from Mike Kaganski  ---
Created attachment 193957
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193957&action=edit
A sample for comparison

The attachment is proposed for comparative debugging of the problem. I failed
to comprehend how to fix this, so here are some notes, in the hope that they
may help more knowledgeable people (Regina? Armin?) to not waste time for
preparational routine.

The file has a *legacy* rectangle, and a identically sized polygon, both
created horizontally (long side X, short side Y). Both have text adjusted to
contour, and both rotated 90 degrees. This allows to see the difference, but
also to see where the similarity and difference of of processing is.

Both are processed by SdrTextObj::impDecomposeContourTextPrimitive, where the
passed SdrContourTextPrimitive2D provides the transformation and the unit
polypolygon. In case of the rectangle, the transformation is:

Scale 18000 x 11000
Translate 1 x 18000
Rotate-pi/2
Shear 0

while for the polyline:

Scale 11000 x 18000
Translate 0 x 11700
Rotate-pi/2
Shear 0

The unit polypolygon passed for the rectangle case has five points
(unimportant, one extra point is in the middle of a long side), covering the
range of [0.0, 0.0 ,1.0, 1.0] (a square). In the polyline case, the unit
polypolygon has four points, and unexpectedly covers the range of
[-1.6363636363636362, 0.0, 0.0, 0.61105]. This is actually not a
*unit* polypolygon, because its size is not 1.

Applying the transformation, the rectangle case gives the polypolygon covering
[0.0, 0.0, 18000.0, 11000.0], while the polyline case covers [-18000.0, 0.0,
0.0. 10999]. The latter has correct dimensions, but is placed differently.
Possibly this is the problem.

The creation of the unit polypolygon for rectangle happens in
SdrRectanglePrimitive2D::create2DDecomposition. For polyline, this happens in
ViewContactOfSdrPathObj::createViewIndependentPrimitive2DSequence; and there, I
had an interesting result, when simply replaced rotation used to create
aObjectMatrix [1] with 0. Then, the text was always in the correct place,
correctly fitting the contour - but it was always vertical. I couldn't figure,
what is needed to create the correct transformation.

Hope this helps.

[1]
https://opengrok.libreoffice.org/xref/core/svx/source/sdr/contact/viewcontactofsdrpathobj.cxx?r=ebae130b#119

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Mike Kaganski  changed:

   What|Removed |Added

Version|4.2.6.3 release |Inherited From OOo

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2024-05-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #19 from Mike Kaganski  ---
Created attachment 193955
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193955&action=edit
The process of rotation

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2023-10-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Regina Henschel  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||2906

--- Comment #18 from Regina Henschel  ---
Currently the fit-to-contour feature is totally broken, see bug 152906.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2023-10-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #17 from QA Administrators  ---
Dear Janusz,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2021-10-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #16 from Janusz  ---
Bug still present and very vivid.
Version: 7.2.1.2 (x64) / LibreOffice Community
Build ID: 87b77fad49947c1441b67c559c339af8f3517e22
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: pl-PL (pl_PL); UI: pl-PL
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2021-10-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #15 from Regina Henschel  ---
"Adjust to contour" is still broken for polygons.
Tested in Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 93115d2c54d645bcf2f80fde325e3ede39dee4d5
CPU threads: 8; OS: Windows 10.0 Build 19043; UI render: default; VCL: win
Locale: de-DE (en_US); UI: en-US
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2021-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #14 from QA Administrators  ---
Dear Janusz,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2019-10-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #13 from Regina Henschel  ---
"Adjust to contour" is still wrong for rotated polygons in Version:
6.4.0.0.alpha0+ (x64)
Build ID: b2d8093b19642038631dfb8f1ab6745a380a652c
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-09-23_22:42:37
Locale: de-DE (en_US); UI-Language: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2018-11-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #12 from Regina Henschel  ---
Created attachment 146254
  --> https://bugs.documentfoundation.org/attachment.cgi?id=146254&action=edit
text in original and in rotated polygon

The error still exists in Version: 6.2.0.0.alpha1+ (x64)
Build ID: e33424dd887cb1a11a3dba2513ef0f4bf93a6dbe
CPU threads: 8; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-11-01_00:43:29
Locale: de-DE (en_US); Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2018-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

--- Comment #11 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84507] FORMATING: Text does not fit to contour in rotated polygon or bézier curve

2017-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84507

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de
Summary|FORMATING: Rotated text |FORMATING: Text does not
   |does not fit to contour in  |fit to contour in rotated
   |a custom shape  |polygon or bézier curve

--- Comment #10 from Regina Henschel  ---
Changed subject, because "Adjust to contour" is not available for custom
shapes, but only for polygons, bézier curves and legacy rectangle and circles.

For legacy rectangles and circles the text position is correct, but not for
polygons and bézier curves. I see the error in Version: 6.0.0.0.alpha1+
Build ID: d30522e46ca884e9bc74af21711d9537e8118859
CPU threads: 4; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2017-10-29_23:13:14
Locale: de-DE (de_DE); Calc: group

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs