Possible Duplicate:
Know if a file is a image in Java/Android
How can I check a file if it is an image? like following:
if(file.isImage)....
If it's not possible with standard libraries, how can I do it with the MagickImage lib?
Thanks in advance!
How can I check a file if it is an image? like following: if(file.isImage).... If it's not possible with standard libraries, how can I do it with the MagickImage lib? Thanks in advance! |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Try This Code Dear.
It`s Work fine. and Use This like (new ImageFileFilter(pass file name)); |
|||||||||
|
|
I think if you want to check whether a file is an image, you need to read it. An image file may not obey the file extension rules. You can try to parse the file by BitmapFactory as following:
|
|||||||||||||||
|