https://github.com/juliagraphics/freetype.jl
FreeType 2 bindings for Julia
https://github.com/juliagraphics/freetype.jl
freetype julia
Last synced: over 1 year ago
JSON representation
FreeType 2 bindings for Julia
- Host: GitHub
- URL: https://github.com/juliagraphics/freetype.jl
- Owner: JuliaGraphics
- License: zlib
- Created: 2014-05-04T21:04:01.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2023-12-13T12:29:34.000Z (over 2 years ago)
- Last Synced: 2025-03-18T19:30:20.037Z (over 1 year ago)
- Topics: freetype, julia
- Language: Julia
- Homepage:
- Size: 309 KB
- Stars: 12
- Watchers: 2
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# FreeType.jl
[](https://travis-ci.org/JuliaGraphics/FreeType.jl)
[](https://codecov.io/gh/JuliaGraphics/FreeType.jl)
[FreeType](http://www.freetype.org/) bindings for [Julia](http://julialang.org/).
## Example
```julia
using FreeType
library = Vector{FT_Library}(undef, 1)
error = FT_Init_FreeType(library)
@assert error == 0
```