[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2021-06-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Kevin Suo  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |suokunl...@126.com
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #26 from Kevin Suo  ---
I have submitted a patch in gerrit:
https://gerrit.libreoffice.org/c/core/+/118156

Please review and test and provide any feedback with this patch.

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2021-06-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Kevin Suo  changed:

   What|Removed |Added

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

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2021-06-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

--- Comment #25 from Kevin Suo  ---
Text Render Mode codes are explained in section 5.2.5 here:
https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/pdf_reference_archives/PDFReference.pdf

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2021-06-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Kevin Suo  changed:

   What|Removed |Added

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

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2021-06-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

--- Comment #24 from Kevin Suo  ---
Furher investigation shows that the text rendering mode is already 2 when I
precessing the pdf using instdir/program/xpdfimport binary file. My
understanfing is that that binary uses poppler to parse the pdf, and then
libreogfice uses the parsed result to do further rendering line by line (in
https://opengrok.libreoffice.org/s?refs=parseLine=core).

The test pdf file uses SimSin font. This font does not have a "bold" font name.
I guess in pdf it may used text render mode for "fake bold".

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2021-06-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

--- Comment #23 from Kevin Suo  ---
After some debugging in gdb, I find that the related code seems to be in:
sdext/source/pdfimport/tree/pdfiprocessor.cxx

where the line:
> aChangedFont.isOutline = ( (rGC.TextRenderMode == 1) || (rGC. TextRenderMode 
> == 2) );
seems to be wrong.

I am not sure what TextRenderMode == 1 and TextRenderMode == 2 means, but:

when I set this line to:
> aChangedFont.isOutline = ( rGC.TextRenderMode == 2 );
then the imported font is shown as "outline" effect

and when I set this line to:
> aChangedFont.isOutline = ( rGC.TextRenderMode == 1 );
then the outline effect is gone, but the font is not shown as bold.

As a result, I guess:
rGC.TextRenderMode == 1 means the font weight should be outlined, and
rGC.TextRenderMode == 2 means the font render should be "bold".

So, if
aChangedFont.isOutline = ( rGC.TextRenderMode == 2 )
then because the font is bold thus it evaluates to true, thus the outline
effect is wrongly set.
The correct code is to use mode 2 as outline, while separately add lines to
test if it is bold and set font weight accordingly.

Could someone have a look? It is out of my ability to fix this.

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2021-06-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

--- Comment #22 from Kevin Suo  ---
My investigation suggests that the function 

std::unique_ptr SdrMakeOutliner(OutlinerMode nOutlinerMode,
SdrModel& rModel)

in

https://opengrok.libreoffice.org/xref/core/svx/source/svdraw/svdetc.cxx?r=541f94df#327

did get called when the test PDF file is open in Draw.

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2020-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

himajin100...@gmail.com changed:

   What|Removed |Added

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

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2020-07-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

--- Comment #21 from himajin100...@gmail.com ---
cross reference

confirmed in Japanese forum.
https://ask.libreoffice.org/ja/question/256437/

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

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

--- Comment #20 from Franklin Weng  ---
(In reply to QA Administrators from comment #18)

Still reproducible in

版本:6.2.0.3
組建 ID:98c6a8a1c6c7b144ce3cc729e34964b47ce25d62
CPU 執行緒:4; OS:Linux 4.15; UI 算繪:預設; VCL: gtk3; 
語言地區:zh-TW (zh_TW.UTF-8); UI語言:zh-TW
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

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

--- Comment #19 from Kevin Suo  ---
The problem still exists in the moat recent version.

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

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

--- Comment #18 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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

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

--- Comment #17 from Franklin Weng  ---
Created attachment 139712
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139712=edit
Sample pdf file with the same problem

1. The problem still exists in 6.0.0.2.

版本:6.0.0.2
組建 ID:06b618bb6f431d27fd2def25aa19c833e29b61cd
CPU 執行緒:4; OS:Linux 4.11; UI 算繪:預設; VCL: kde4; 
語言地區:zh-TW (zh_TW.UTF-8); Calc: group

2. The problem exists in 4.0.0.1, which is the earliest version I can test.
版本 4.0.0.1 (組建 ID:527dba6f6e0cfbbc71bd6e7b88a52699bb48799)

3. If I open it with Draw, save as ODG, and use zip to extract this ODG file
into a folder, then use a text editor to modify *all* the 

style:text-outline="true"

to

style:text-outline="false"

and zip back to become odg file, the problem would be resolved.

It should be misjudged some fonts as text-outline=true.

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

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

--- Comment #16 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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

2016-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Adolfo Jayme  changed:

   What|Removed |Added

 Attachment #103018|application/x-msdownload|application/pdf
  mime type||

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

2016-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Adolfo Jayme  changed:

   What|Removed |Added

 Attachment #103020|application/x-msdownload|application/pdf
  mime type||

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

2016-12-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Telesto  changed:

   What|Removed |Added

Version|4.2.6.1 rc  |Inherited From OOo

--- Comment #15 from Telesto  ---
Also found in:
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

2016-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #14 from Buovjaga  ---
Not sure, if we should mark this as CJK, as I am able to repro with random
fonts such as Lilita One (part of Google fonts pack).
http://www.1001fonts.com/lilita-one-font.html

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

2016-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Buovjaga  changed:

   What|Removed |Added

 CC||j54311...@gmail.com

--- Comment #13 from Buovjaga  ---
*** Bug 104725 has been marked as a duplicate of this bug. ***

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK ?) font is applied

2016-12-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Buovjaga  changed:

   What|Removed |Added

 CC||frank...@goodhorse.idv.tw

--- Comment #12 from Buovjaga  ---
*** Bug 104748 has been marked as a duplicate of this bug. ***

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2016-05-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Heiko Tietze  changed:

   What|Removed |Added

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

-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2016-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

Heiko Tietze  changed:

   What|Removed |Added

 Blocks||99746

--- Comment #11 from Heiko Tietze  ---
Confirmed (outline is checked after reading the PDF but only for SimSum font
and not Times New Roman where style is bold, as expected)

Version: 5.2.0.0.alpha0+
Build ID: 6b232aeecc55f1715bc111e636e36a8e24827efb
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-26_07:40:04
Locale: de-DE (de_DE)


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99746
[Bug 99746] SUB META: Improve PDF editing
-- 
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 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2015-10-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

--- Comment #9 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 on a currently supported version of
LibreOffice (5.0.1 or preferably 5.0.2.2 or later)
   https://www.libreoffice.org/download/

   If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

 If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

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)

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:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2015-10-14

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as "outline", if Chinese (CJK?) font is applied

2015-10-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81484

--- Comment #10 from Kevin Suo  ---
(In reply to QA Administrators from comment #9)

Bug still exists
Version: 5.0.3.1
Build ID: fd8cfc22f7f58033351fcb8a83b92acbadb0749e
Locale: zh-CN (zh_CN)
Win10 X86

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-09-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

--- Comment #8 from vv...@yandex.ru ---
Created attachment 106256
  -- https://bugs.freedesktop.org/attachment.cgi?id=106256action=edit
Fill and stroke properties of the text

To correctly fix this problem, separate control over the fill and stroke
properties of the text is needed.
For now, it is impossible to replicate first three samples of 'example_026.pdf'
in LO.Draw without any hacks (like one text on top of other, conversion of text
into polygons, etc).

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-08-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 Blocks||83066

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

Kevin Suo suokunl...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=78427

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

--- Comment #6 from Kevin Suo suokunl...@gmail.com ---
Also reproduced with 3.6.7.2, ubuntu 14.04 x86.

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

Kevin Suo suokunl...@gmail.com changed:

   What|Removed |Added

 OS|Windows (All)   |All

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

--- Comment #7 from yanjing...@gmail.com ---
Reproduced with Fedora 20 x86_64 LO 4.2.5.2

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

--- Comment #2 from Kevin Suo suokunl...@gmail.com ---
Created attachment 103018
  -- https://bugs.freedesktop.org/attachment.cgi?id=103018action=edit
pdf file, exported from the above odt file

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

--- Comment #1 from Kevin Suo suokunl...@gmail.com ---
Created attachment 103017
  -- https://bugs.freedesktop.org/attachment.cgi?id=103017action=edit
test odt file, to be exported as PDF

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

Kevin Suo suokunl...@gmail.com changed:

   What|Removed |Added

Summary|Draw pdf import: bold font  |Draw pdf import: bold font
   |shown as outline, if|shown as outline, if
   |Chinese (CJK?) font is  |Chinese (CJK?) font is
   |applied |applied

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

--- Comment #3 from Kevin Suo suokunl...@gmail.com ---
Created attachment 103020
  -- https://bugs.freedesktop.org/attachment.cgi?id=103020action=edit
screenshot showing the difference

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

--- Comment #4 from Kevin Suo suokunl...@gmail.com ---
Created attachment 103021
  -- https://bugs.freedesktop.org/attachment.cgi?id=103021action=edit
Screnshot from libreofficechina forum, which can confirm this issue

This bug was originally reported here:
http://libreofficechina.org/thread-163-1-1.html

I am attaching the original bug reporter's screenshot.

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


[Libreoffice-bugs] [Bug 81484] Draw pdf import: bold font shown as outline, if Chinese (CJK?) font is applied

2014-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81484

Kevin Suo suokunl...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from Kevin Suo suokunl...@gmail.com ---
Set to NEW, as it's already confirmed by a few poeple in libreofficechina
forum.

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