if (! (graphicOutput instanceof GraphicPdf)) {
throw new GraphicException("Unable to get PDF output helper for "
+ this.graphic.getUrl());
}
final GraphicPdf graphicPdf = (GraphicPdf) graphicOutput;
graphicPdf.drawVectorContent(outputStream, this.getPDFDocument(),
this.fontConsumer, this.strokeText, false);
return outputStream.toByteArray();
}
/**