0

我有一个正常启动 Adob​​e Image Editor 的 Android 应用程序。

Intent imageEditorIntent = new AdobeImageIntent.Builder(mContext)
                    .setData(selectedImageUri)
                    .withToolList(tools)
                    .withOutput(new File(lastSavedFilePath))
                    .build();
            startActivityForResult(imageEditorIntent, 2);

我想集成 Typekit 以进行字体选择,因为我看到 Aviary 应用程序会在您选择“文本”工具时自动让您从 typekit 中选择字体。我找不到有关此的文档。我能找到的最接近的事情是将 TypeKit UI 添加到我自己的活动中,但这并不是我想要做的

4

1 回答 1

0

目前不允许用户在 Creative SDK 图像编辑器中选择 Typekit 字体。

于 2016-12-19T05:42:49.230 回答