Lines Matching refs:jfif

243                     JFIFMarkerSegment jfif =
246 if (jfif == null) {
250 jfif.addJFXX(buffer, reader);
278 JFIFMarkerSegment jfif =
281 if (jfif == null) {
285 jfif.addICC(buffer);
596 JFIFMarkerSegment jfif = new JFIFMarkerSegment();
597 markerSequence.add(jfif);
600 jfif.addICC((ICC_ColorSpace)cs);
792 JFIFMarkerSegment jfif = (JFIFMarkerSegment)
794 if (jfif != null) {
796 header.appendChild(jfif.getNativeNode());
993 JFIFMarkerSegment jfif =
995 if (jfif != null) {
999 if (jfif.resUnits == 0) {
1001 aspectRatio = ((float) jfif.Xdensity)/jfif.Ydensity;
1004 aspectRatio = ((float) jfif.Ydensity)/jfif.Xdensity;
1011 if (jfif.resUnits != 0) {
1013 float scale = (jfif.resUnits == 1) ? 25.4F : 10.0F;
1018 Float.toString(scale/jfif.Xdensity));
1024 Float.toString(scale/jfif.Ydensity));
1130 // is there already a jfif marker segment?
1648 JFIFMarkerSegment jfif =
1670 if (!wantJFIF && (jfif != null)) {
1671 markerSequence.remove(jfif);
1923 JFIFMarkerSegment jfif =
1925 if (jfif == null) {
1958 jfif = new JFIFMarkerSegment();
1959 markerSequence.add(0, jfif);
1962 if (jfif != null) {
1972 jfif.resUnits = JPEG.DENSITY_UNIT_ASPECT_RATIO;
1973 jfif.Xdensity = p.x;
1974 jfif.Xdensity = p.y;
1980 jfif.resUnits = JPEG.DENSITY_UNIT_DOTS_CM;
1981 jfif.Xdensity = dpcm;
1987 jfif.resUnits = JPEG.DENSITY_UNIT_DOTS_CM;
1988 jfif.Ydensity = dpcm;
2079 JFIFMarkerSegment jfif = (JFIFMarkerSegment) findMarkerSegment
2103 if (jfif != null) {
2104 markerSequence.remove(jfif);
2260 JFIFMarkerSegment jfif =
2278 if (jfif != null) {
2300 // stream can't have jfif, adobe, sof, or sos
2304 if ((jfif != null) || (adobe != null)
2373 JFIFMarkerSegment jfif = (JFIFMarkerSegment) seg;
2374 jfif.writeWithThumbs(ios, thumbnails, writer);