This source file includes following definitions.
- fontPlatformData
- create
- supportsFormat
#include "config.h"
#include "platform/fonts/FontCustomPlatformData.h"
#include "platform/LayoutTestSupport.h"
#include "platform/SharedBuffer.h"
#include "platform/fonts/FontCache.h"
#include "platform/fonts/FontPlatformData.h"
#include "platform/fonts/opentype/OpenTypeSanitizer.h"
#include "third_party/skia/include/core/SkStream.h"
#include "third_party/skia/include/core/SkTypeface.h"
#include "wtf/PassOwnPtr.h"
namespace WebCore {
FontCustomPlatformData::FontCustomPlatformData(PassRefPtr<SkTypeface> typeface)
: m_typeface(typeface)
{
}
FontCustomPlatformData::~FontCustomPlatformData()
{
}
FontPlatformData FontCustomPlatformData::fontPlatformData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant)
{
ASSERT(m_typeface);
#if OS(WIN)
bool syntheticBold = bold && !m_typeface->isBold();
bool syntheticItalic = italic && !m_typeface->isItalic();
if (syntheticBold || syntheticItalic) {
SkString name;
m_typeface->getFamilyName(&name);
int style = SkTypeface::kNormal;
if (syntheticBold)
style |= SkTypeface::kBold;
if (syntheticItalic)
style |= SkTypeface::kItalic;
RefPtr<SkTypeface> typeface = adoptRef(FontCache::fontCache()->fontManager()->legacyCreateTypeface(name.c_str(), static_cast<SkTypeface::Style>(style)));
syntheticBold = false;
syntheticItalic = false;
return FontPlatformData(typeface.release(), "", size, syntheticBold, syntheticItalic, orientation);
}
#endif
return FontPlatformData(m_typeface.get(), "", size, bold && !m_typeface->isBold(), italic && !m_typeface->isItalic(), orientation);
}
PassOwnPtr<FontCustomPlatformData> FontCustomPlatformData::create(SharedBuffer* buffer)
{
ASSERT_ARG(buffer, buffer);
OpenTypeSanitizer sanitizer(buffer);
RefPtr<SharedBuffer> transcodeBuffer = sanitizer.sanitize();
if (!transcodeBuffer)
return nullptr;
buffer = transcodeBuffer.get();
RefPtr<SkMemoryStream> stream = adoptRef(new SkMemoryStream(buffer->getAsSkData().get()));
#if OS(WIN)
RefPtr<SkTypeface> typeface = adoptRef(FontCache::fontCache()->fontManager()->createFromStream(stream.get()));
#else
RefPtr<SkTypeface> typeface = adoptRef(SkTypeface::CreateFromStream(stream.get()));
#endif
if (!typeface)
return nullptr;
return adoptPtr(new FontCustomPlatformData(typeface.release()));
}
bool FontCustomPlatformData::supportsFormat(const String& format)
{
return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::supportsFormat(format);
}
}