()
| 249 | } |
| 250 | |
| 251 | public String getFileType() { |
| 252 | String MIMEtype=getPhotoMIMEType(); |
| 253 | if (MIMEtype!=null) { |
| 254 | if (MIMEtype.equals("image/jpeg")) return ".jpg"; |
| 255 | if (MIMEtype.equals("image/png")) return ".png"; |
| 256 | if (MIMEtype.equals("image/gif")) return ".gif"; |
| 257 | if (MIMEtype.equals("image/x-ms-bmp")) return ".bmp"; |
| 258 | } |
| 259 | return ".jpg"; |
| 260 | } |
| 261 | //#endif |
| 262 | |
| 263 | //#if FILE_IO |
no test coverage detected