You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ruby library is to make it easier to handle .obf and .obz files. These files
are part of the Open Board Format, an effort to standardize communication board layouts
for assistive technology and AAC users. The file format is JSON-structured and can
be completely self-contained or reference external URLs.
This library makes it easy to convert to and from .obf and .obz files for generating
images and pdfs, and supports converting some proprietary formats to .obf and .obz.
Installation
This is packaged as the obf rubygem, so you can just add the dependency to
your Gemfile or install the gem on your system:
gem install obf
To require the library in your project:
require 'obf'
External converters require node. PDF and PNG conversion require imagemagick and node.
PNG conversion also requires ghostscript.
Usage
OBF supports multiple conversion schemes, the simplest of which are obf, obz, pdf and png
# convert an .obf file to a .pdfOBF::PDF.from_obf('path/to/input.obf','path/to/output.pdf')# convert an .obz package to a .pdfOBF::PDF.from_obf('path/to/input.obz','path/to/output.pdf')# convert an .obf file to a .png imageOBF::PNG.from_obf('path/to/input.obf','path/to/output.png')# convert an .obz package to a .png imageOBF::PNG.from_obf('path/to/input.obz','path/to/output.png')
The gem also supports converting some native packages into OBF files
The external options are the most interesting. Once you understand the
makeup of these external resources, you can generate them from any other system and
easily convert a system's content to .obf, .obz, .pdf or .png.
The makeup of these files closely resembles the layout of an .obf file according to
the .obf spec. You can see an example generator in lib/obf/picto4me.rb,
or dig into the specifics yourself in lib/obf/external.rb.
Future Work
We've talked about including some utilities to make translation easier. Basically
something that would take an .obf or .obz file and spit out a set of translation strings,
and another something that would take an .obf or .obz file and a set of translation strings
and generate a new, translated result.