blob: 4fc0072846b9e7343ca7b3923f5d8c0c4e75070f [file] [log] [blame]
halcanary86b6eab2016-08-17 07:57:27 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7#ifndef SkPDFMakeCIDGlyphWidthsArray_DEFINED
8#define SkPDFMakeCIDGlyphWidthsArray_DEFINED
9
10#include "SkPDFTypes.h"
11
12class SkBitSet;
13class SkGlyphCache;
14
Hal Canary55325b72017-01-03 10:36:17 -050015/* PDF 32000-1:2008, page 270: "The array's elements have a variable
halcanary86b6eab2016-08-17 07:57:27 -070016 format that can specify individual widths for consecutive CIDs or
17 one width for a range of CIDs". */
18sk_sp<SkPDFArray> SkPDFMakeCIDGlyphWidthsArray(SkGlyphCache* cache,
19 const SkBitSet* subset,
20 uint16_t emSize,
21 int16_t* defaultWidth);
22
23#endif // SkPDFMakeCIDGlyphWidthsArray_DEFINED