Chapter 2. Using libgutenprint

This chapter describes how to write programs that use libgutenprint.

2.1. Code prerequisites

To use libgutenprint with a program, several steps must be taken:

The following is a short example program. It does not do anything useful, but it does everything required to link with libgutenprint and call other functions from libgutenprint.

#include <gimp-print/gimp-print.h>
int
main (int argc, char *argv[])
{
  stp_init();
  return 0;
}