(String parFilename, Image parImage, int parWidth, int parHeight)
| 82 | |
| 83 | |
| 84 | public void saveBitmap (String parFilename, Image parImage, int parWidth, int parHeight) throws Exception { |
| 85 | fo = new FileOutputStream (parFilename); |
| 86 | bfo = new BufferedOutputStream(fo); |
| 87 | save (parImage, parWidth, parHeight); |
| 88 | bfo.close(); |
| 89 | fo.close (); |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | * The saveMethod is the main method of the process. This method |
no test coverage detected