글꼴의 크기에 대해서 (pixelsize, pt???)

nulluser의 이미지

글꼴은 크기를 나타내는 규격에 대한 질문입니다.
한양글꼴이 작은 크기에서 일그러진 모양으로 몹시 못생긴거 다들 알고 계실겁니다.

웹브라우져에서 확인해보니, 8pt까지는 일그러진 모양이고 9pt부터는 보기 좋은 모양으로 나왔습니다.
gnome-font-properties에서도 size 8까지는 역시 못생겼고, 9부터는 좋은 모양으로 역시 확인했습니다.

그래서, 8pt이하의 글꼴을 표시하지 않게하기 위해 fonts.conf를 이렇게...

	<match target="pattern">
		<test qual="any" name="family">
			<string>Batang</string>
			<string>Dotum</string>
			<string>Gulim</string>
			<string>Gungsuh</string>
			<string>BatangChe</string>
			<string>DotumChe</string>
			<string>GulimChe</string>
			<string>GungsuhChe</string>
			<string>바탕</string>
			<string>돋움</string>
			<string>굴림</string>
			<string>궁서</string>
			<string>바탕체</string>
			<string>돋움체</string>
			<string>굴림체</string>
			<string>궁서체</string>
		</test>
		<test qual="any" name="pixelsize" compare="less">
			<double>9</double>
		</test>
		<edit name="pixelsize" mode="assign">
			<double>9</double>
		</edit>
	</match>
그런데, 8pt의 글꼴이 여전히 표현되고 있었습니다.
설정에 문제가 있었나 싶어서 살펴봐도 어떤 문제도 발견할 수 없었기에, 위의 설정에서 pixelsize를 이리저리 바꿔서 결국은...
		<test qual="any" name="pixelsize" compare="less">
			<double>12</double>
		</test>
		<edit name="pixelsize" mode="assign">
			<double>12</double>
		</edit>
로 설정한 후에 원하는 글꼴설정을 할 수 있었습니다.
제가 원하는 것은 8pt이하의 글꼴을 9pt로 표시되게 하는 거였는데, pixelsize의 값을 12로 설정해야 원하는 대로 글꼴이 표시됩니다.

pt와 pixelsize가 다른건가요?

sleepbysleep의 이미지

예 다릅니다. 제가 알기로는 point는 서로 resolution의 화면에 대해서 폰트 사이즈의 일관성을 유지 하기위해 사용하는 걸로 알고 있습니다.
답변이 될런지 모르겠지만 아래 사이트를 참고 하세요.

http://lists.gnu.org/archive/html/freetype/2001-07/msg00042.html

nulluser의 이미지

고맙습니다.
DPI를 96으로 쓰고 있었기 때문에 pixelsize를 12로 설정해야 했던거군요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.