saveContext method

void saveContext()

Save the graphc context

Implementation

void saveContext() {
  assert(() {
    if (_page.pdfDocument.verbose) {
      _buf.putComment('saveContext');
    }
    return true;
  }());

  _buf.putString('q\n');
  _contextQueue.addLast(_context.copy());
}