I am just getting into 3D modeling, like really just getting into it.
JPEGImageEncoder jie = JPEGCodec.createJPEGEncoder(bos);
JPEGEncodeParam param = jie.getDefaultJPEGEncodeParam(bImage);
param.setQuality(1.0f, true);
jie.setJPEGEncodeParam(param);
jie.encode(bImage);
I need to replace these lines, apparently with java ImageIO. I really don't know much about these, but I would like to get this code to run.
I got the code from here: http://www.java2s.com/Code/Java/3D/HumanAnimation.htm
I was able to find all the packages I needed, but it won't let me use some of the sun packages. From what I've read, I should be using java ImageIO to do these things, but the problem is, I'm not sure what these lines are doing exactly, so I don't know what to replace them with. Any help would be great. Thanks.