(DataOutputStream os)
| 1035 | |
| 1036 | |
| 1037 | protected void writeBitmap(DataOutputStream os) throws IOException { |
| 1038 | int[] pixels = image.pixels; |
| 1039 | for (int y = 0; y < height; y++) { |
| 1040 | for (int x = 0; x < width; x++) { |
| 1041 | os.write(pixels[y * width + x] & 0xff); |
| 1042 | } |
| 1043 | } |
| 1044 | } |
| 1045 | |
| 1046 | |
| 1047 | protected Glyph(char c) { |