Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
dd5b15eb
Kaydet (Commit)
dd5b15eb
authored
May 13, 2013
tarafından
Khaled Hosny
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Handle fonts without hhea or OS/2 table e.g. Type1
Change-Id: Ib7245e9f8b7874087966cb1098e63d1f83acaa6a
üst
3c480196
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
gcach_ftyp.cxx
vcl/generic/glyphs/gcach_ftyp.cxx
+12
-2
No files found.
vcl/generic/glyphs/gcach_ftyp.cxx
Dosyayı görüntüle @
dd5b15eb
...
@@ -945,8 +945,10 @@ void ServerFont::FetchFontMetric( ImplFontMetricData& rTo, long& rFactor ) const
...
@@ -945,8 +945,10 @@ void ServerFont::FetchFontMetric( ImplFontMetricData& rTo, long& rFactor ) const
// Calculating ascender and descender:
// Calculating ascender and descender:
// FreeType >= 2.4.6 does the right thing, so we just use what it gives us,
// FreeType >= 2.4.6 does the right thing, so we just use what it gives us,
// for earlier versions we emulate its behaviour; take them from 'hhea'
// for earlier versions we emulate its behaviour;
// table, if zero take them from 'OS/2' table.
// take them from 'hhea' table,
// if zero take them from 'OS/2' table,
// if zero take them from FreeType's font metrics
if
(
nFTVERSION
>=
2406
)
if
(
nFTVERSION
>=
2406
)
{
{
const
FT_Size_Metrics
&
rMetrics
=
maFaceFT
->
size
->
metrics
;
const
FT_Size_Metrics
&
rMetrics
=
maFaceFT
->
size
->
metrics
;
...
@@ -982,6 +984,14 @@ void ServerFont::FetchFontMetric( ImplFontMetricData& rTo, long& rFactor ) const
...
@@ -982,6 +984,14 @@ void ServerFont::FetchFontMetric( ImplFontMetricData& rTo, long& rFactor ) const
}
}
}
}
}
}
if
(
!
(
rTo
.
mnAscent
||
rTo
.
mnDescent
))
{
const
FT_Size_Metrics
&
rMetrics
=
maFaceFT
->
size
->
metrics
;
rTo
.
mnAscent
=
(
rMetrics
.
ascender
+
32
)
>>
6
;
rTo
.
mnDescent
=
(
-
rMetrics
.
descender
+
32
)
>>
6
;
rTo
.
mnExtLeading
=
((
rMetrics
.
height
+
32
)
>>
6
)
-
(
rTo
.
mnAscent
+
rTo
.
mnDescent
);
}
}
}
if
(
pOS2
&&
(
pOS2
->
version
!=
0xFFFF
)
)
if
(
pOS2
&&
(
pOS2
->
version
!=
0xFFFF
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment