Noto Sans CJK OTF font padding is quite different by comparing to Photoshop result

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Kenneth
Posts: 7
Joined: 2019-06-18T01:25:35-07:00
Authentication code: 1152

Noto Sans CJK OTF font padding is quite different by comparing to Photoshop result

Post by Kenneth »

Hello There!

I'm using ImageMagick7 to render the text with Noto Sans CJK JP font

However, There seems an issue when We render Noto Sans font (https://www.google.com/get/noto/#sans-jpan)

We have tried with covert command to check the sample of the result

But the result has quite large padding (or line height) on each line of text

Check the following result

Image

The left one is Photoshop's result



And below is our convert command

convert -background white -fill black -pointsize 64 -font /Users/user/Downloads/NotoSansCJKjp-hinted/test.otf label:'test\ntest' output.png

// test.otf was `Noto Sans CJK JP Medium.otf`



And this is metric information from FontForge

Image
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Noto Sans CJK OTF font padding is quite different by comparing to Photoshop result

Post by fmw42 »

In ImageMagick 7, use magick not convert and not magick convert. Otherwise, you might get IM 6 results. Don't know if this will make any difference.
Kenneth
Posts: 7
Joined: 2019-06-18T01:25:35-07:00
Authentication code: 1152

Re: Noto Sans CJK OTF font padding is quite different by comparing to Photoshop result

Post by Kenneth »

@fmw42

Oh.. I see thank you for informing it

And I tested also with the magick command today

But the result seems no different

Image

Following is the command which i used

magick -background white -fill black -pointsize 64 -font /Users/user/Downloads/NotoSansCJKjp-hinted/test.otf label:'test\ntest' output.png

test.otf is NotoSansCJKjp-Medium.otf

Right one is the result from Imagemagick and Left one is from Photoshop

----

$magick -version


Version: ImageMagick 7.0.8-49 Q16 x86_64 2019-06-13 https://imagemagick.org
Copyright: © 1999-2019 ImageMagick Studio LLC
License: https://imagemagick.org/script/license.php
Features: Cipher DPC HDRI Modules OpenMP(3.1)
Delegates (built-in): bzlib freetype heic jng jp2 jpeg lcms ltdl lzma openexr png tiff webp xml zlib
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Noto Sans CJK OTF font padding is quite different by comparing to Photoshop result

Post by fmw42 »

As far as I can tell, it works fine for me on IM 7.0.8.49 Q16 HDRI Mac OSX Sierra and freetype 2.9.1.

I get the following:

Code: Select all

magick -background white -fill black -pointsize 64 -font /Library/fonts/NotoSansCJKjp-Medium.otf label:'test\ntest' NotoSansCJKjp_mediam_output7.png
Image

Is your freetype current?
Kenneth
Posts: 7
Joined: 2019-06-18T01:25:35-07:00
Authentication code: 1152

Re: Noto Sans CJK OTF font padding is quite different by comparing to Photoshop result

Post by Kenneth »

@fmw42

Thank you for showing the result on your environment

But Your result is same as our result, The problem is ImageMagick uses a large of padding among the OTF

There is a lot of looks different between the other rendering solution when we use OTF font such as NotoSans CJK JP

You can check the padding at above image (the gray one of Photoshop result), They have a small line-height even they use 0 word spacing (font size leading)


BTW, Thank you again for giving attention to this problem
Post Reply