Can someone let me know if there are java libraries that can help me doing the below
- get image width, height, color space (RGB/CMYK), dpi
- get information on WAV audio data: bitrate, sampling rate, channels, length & verify it’s PCM Audio
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
AudioSystem.getAudioFileFormat()will return all the data you need about a WAV file, or any other supported by the standart java library.ImageIO.read()will load the file into aBufferedImageand you can get all the properties from it. You might have some problems with getting the dpi.