mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-14 12:19:08 +00:00
Temporary solution to read woff2
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
//MIT, 2019-present, WinterDev
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Typography.OpenFont.Tables
|
||||
{
|
||||
//https://docs.microsoft.com/en-us/typography/opentype/spec/cvar
|
||||
|
||||
/// <summary>
|
||||
/// cvar — CVT Variations Table
|
||||
/// </summary>
|
||||
class CVar : TableEntry
|
||||
{
|
||||
public const string _N = "cvar";
|
||||
public override string Name => _N;
|
||||
public CVar()
|
||||
{
|
||||
//The control value table (CVT) variations table is used in variable fonts to provide variation data for CVT values.
|
||||
//For a general overview of OpenType Font Variations
|
||||
|
||||
|
||||
}
|
||||
protected override void ReadContentFrom(BinaryReader reader)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user