-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
None
Generates a glyphvector through font.layoutGlyphVector() without init the
graphics enviroment will get java.lang.UnsatisfiedLinkError: initGVIDs
The problem starts from b54 (I guess the problem was occured after InitGVIDs native method was added). Prior to b54, it is ok to call font.layoutGlyphVector() without init graphics env and no exception will throw.
The work around is simplely to call
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
A simple test program is attached.
graphics enviroment will get java.lang.UnsatisfiedLinkError: initGVIDs
The problem starts from b54 (I guess the problem was occured after InitGVIDs native method was added). Prior to b54, it is ok to call font.layoutGlyphVector() without init graphics env and no exception will throw.
The work around is simplely to call
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
A simple test program is attached.