The process information library comes with a standalone .NET 2 assembly that can be
used in your own applications to display images of Metastorm processes. See the
screenshot below where the assembly has been used to show a process image in a
Windows application.
Usage is as simple as the following -
// read from an XEP file
MapImageGenerator gen = MapImageGenerator.FromFile(
@"C:\Procedures\Flight.xep",
"Flight");
Bitmap img = gen.GetImage();
// read from the database
MapImageGenerator gen = MapImageGenerator.FromDatabase(
"connection string",
"Flight", "folder ID");
Bitmap img = gen.GetImage();