Я пробовал следующий код для добавления пользовательских шрифтов в SDK imglyKit, но не добавил пользовательский шрифт. Я также поместил файл .ttf в файл info.plist в качестве ресурса.Как добавить пользовательский шрифт в SDK imglyKit в iOS с Swift?
let sampleImage = image.image
let configuration = Configuration() { builder in
FontImporter.init().importFonts()
builder.configurePhotoEditorViewController({ (editPhotoOption) in
editPhotoOption.allowedPhotoEditorActions = [.text]
editPhotoOption.actionButtonConfigurationClosure = {cell, _ in
cell.captionLabel.text = "Add Text"
//cell.backgroundColor = UIColor.red
}
editPhotoOption.backgroundColor = UIColor.brown
editPhotoOption.allowsPreviewImageZoom = false
})
builder.configureToolStackController({ (toolStackOption) in
toolStackOption.mainToolbarBackgroundColor = UIColor.red
toolStackOption.secondaryToolbarBackgroundColor = UIColor.brown
})
builder.configureTextFontToolController({ (textFontToolOption) in
var fontArray = [String]()
fontArray = ["AlexBrush_Regular.ttf", "Arabella.ttf"]
textFontToolOption.accessibilityElements = fontArray
textFontToolOption.actionButtonConfigurationClosure = { cell, _ in
cell.backgroundColor = UIColor.red
}
})
builder.configureTextToolController({ (textToolOption) in
textToolOption.textViewConfigurationClosure = { label in
label.textAlignment = NSTextAlignment.center
}
})
}
let photoEditViewController = PhotoEditViewController(photo: sampleImage!, configuration: configuration)
let toolStackController = ToolStackController(photoEditViewController: photoEditViewController)
toolStackController.delegate = self
toolStackController.navigationController?.view.backgroundColor = UIColor.red
present(toolStackController, animated: true, completion: nil)
, пожалуйста, помогите мне добавить пользовательский шрифт
Я также использовал класс FontImporter для загрузки пользовательских шрифтов в соответствии с руководством здесь http://static.photoeditorsdk.com/docs/ios/Classes/FontImporter.html Спасибо ...
У вас есть образец проекта? –
да @TimurBernikowich –
Проверьте мой ответ. –