firefox 1.5.0.7 로 업데이트후 한글폰트 문제.

MasterQ의 이미지

최대한 search를 해봤지만 답을 못찾아서 질문올립니다. 폰트설정은 여전히 저에게 어렵군요.

아직 ubuntu breezy를 사용하고 있고 최근에 firefox update가 있어서 1.5.0.7로 업데이트 했습니다. 기본 글꼴로 굴림체인가 바탕인인가를 anti-aliasing 과 hinting을 끄고 사용하고 있었는데 업데이트후 설정값들이 더 이상 적용이 안됩니다. (i.e. anti-aliasing 적용됨)

한글 글꼴에 대해서 은돋움을 해도 어떤 한글 사이트에서는 뭉개진 굴림체가 그대로 사용되는 경우도 있구요. (아마 proportional font라 그렇진 않을까 생각중..)

얼핏 본것으로는 파폭 1.5에선 .fonts.conf 의 size를 pixelsize로 바꿔줘야 한다고 해서 같이 써보기도 했는데 예가 없어서 제대로 한것인지도 모르겠습니다.

.fonts.conf 를 첨부합니다, 간단한 실수면 도움 부탁드립니다~

<fontconfig>
<match target="pattern">
  <test name="family">
    <string>Bitstream Vera Sans</string>
    <string>Bitstream Vera Serif</string>
    <string>Bitstream Vera Sans Mono</string>
	<string>Andale Mono</string>
  </test>
  <edit name="family" mode="append" binding="strong">
    <string>Gulim</string>
  </edit>
</match>
<match target="font">
		<test qual="any" name="family" compare="eq">
				<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>New Batang</string>
				<string>New Dotum</string>
				<string>New Gulim</string>
				<string>New Gungsuh</string>
		</test>
		<test name="size" compare="more_eq"><int>9</int></test>
		<test name="size" compare="less"><int>16</int></test>
		<test name="pixelsize" compare="more_eq"><int>9</int></test>
		<test name="pixelsize" compare="less"><int>16</int></test>
		<edit name="antialias" mode="assign"><bool>false</bool></edit>
		<edit name="hinting" mode="assign"><bool>false</bool></edit>
</match>
 
<match target="pattern">
<test name="family">
    <string>console8x16</string>
</test>
<edit name="family" mode="append" binding="strong">
    <string>Batang</string>
    <string>YDIYGO320</string>
</edit>
</match>
 
<match target="font">
  <test name="weight" compare="less_eq">
    <const>medium</const>
  </test>
  <test target="pattern" name="weight" compare="more">
    <const>medium</const>
  </test>
  <edit name="weight" mode="assign">
    <const>bold</const>
  </edit>
</match>
<match target="font">
  <test name="weight" compare="less_eq">
    <const>medium</const>
  </test>
  <test target="pattern" name="weight" compare="more">
    <const>medium</const>
  </test>
  <edit name="weight" mode="assign">
    <const>bold</const>
  </edit>
</match>
</fontconfig>
sephiron의 이미지

fc-match -v 의 결과도 embolden이 true인가요? 그렇다면 ~/.fonts.conf말고 language-selection.conf(?)에 embolden 설정을 넣어주시면 어떨까요?

만약 fc-match -v gulim의 embolden flag가 false라면 firefox 설정을 만져줘야 할 듯.
이거 한 번 봐보세요. http://wiki.kldp.org/wiki.php/Fibonacci/2005-03#s-5
firefox가 일반 어플과는 다르게 폰트를 지정해서 저도 골치아프군요.
----
Forensic Computing On Linux

아직 멀었어

MasterQ의 이미지

휴. 이렇게 해결했습니다.

<match target="font">
    <test qual="any" name="family" compare="eq">
        <string>batang</string>
        <string>dotum</string>
        <string>gulim</string>
        <string>Batang</string>
        <string>Dotum</string>
        <string>Gulim</string>
        <string>굴림</string>
        <string>Gungsuh</string>
        <string>BatangChe</string>
        <string>DotumChe</string>
        <string>GulimChe</string>
        <string>GungsuhChe</string>
        <string>New Batang</string>
        <string>New Dotum</string>
        <string>New Gulim</string>
        <string>New Gungsuh</string>
    </test>
    <test name="pixelsize" compare="more_eq"><double>12</double></test>
    <test name="pixelsize" compare="less"><double>22</double></test>
    <edit name="antialias" mode="assign"><bool>false</bool></edit>
    <edit name="hinting" mode="assign"><bool>false</bool></edit>
</match>

한글로 굴림이라고 추가로 해주고, int를 double로 바꿔줬습니다. 혹시라도 같은 문제를 겪으시는 분이 있으면 참조하세요.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.