1155115611571158115911601161
/** * Output GD image to browser or file */ public static void imagegd(QuercusImage image, @Optional Path file) { throw new QuercusException("imagegd is not implemented"); }
1266126712681269127012711272
/** * Load a new font */ public static long imageloadfont(Path file) { throw new QuercusException("imageloadfont() not implemented"); }
1327132813291330133113321333
public static ArrayValue imagepsbbox(String text, int font, int size, @Optional int space, @Optional int tightness, @Optional float angle) { throw new QuercusException("imagepsbbox() not implemented"); }
1335133613371338133913401341
/** * Make a copy of an already loaded font for further modification */ public static int imagepscopyfont(Value fontIndex) { throw new QuercusException("imagepscopyfont() not implemented"); }
1343134413451346134713481349
/** * Change the character encoding vector of a font */ public static boolean imagepsencodefont(Value fontIndex, Path encodingFile) { throw new QuercusException("imagepsencodefont() not implemented"); }
1351135213531354135513561357
/** * Extend or condense a font */ public static boolean imagepsextendfont(int fontIndex, float extend) { throw new QuercusException("imagepsextendfont() not implemented"); }
1359136013611362136313641365
/** * Free memory used by a PostScript Type 1 font */ public static boolean imagepsfreefont(Value fontIndex) { throw new QuercusException("imagepsfreefont() not implemented"); }
1367136813691370137113721373
/** * Load a PostScript Type 1 font from file */ public static Value imagepsloadfont(Path fontFile) { throw new QuercusException("imagepsloadfont() not implemented"); }
1375137613771378137913801381
/** * Slant a font */ public static boolean imagepsslantfont(Value fontIndex, float slant) { throw new QuercusException("imagepsslantfont() not implemented"); }
1390139113921393139413951396
@Optional int space, @Optional int tightness, @Optional float angle, @Optional int antialias_steps) { throw new QuercusException("imagepstext() not implemented"); }