Searched refs:jfif (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGMetadata.java242 JFIFMarkerSegment jfif =
245 if (jfif == null) {
249 jfif.addJFXX(buffer, reader);
277 JFIFMarkerSegment jfif =
280 if (jfif == null) {
284 jfif.addICC(buffer);
594 JFIFMarkerSegment jfif = new JFIFMarkerSegment();
595 markerSequence.add(jfif);
598 jfif.addICC((ICC_ColorSpace)cs);
786 JFIFMarkerSegment jfif
[all...]
H A DJPEGImageWriter.java340 // metadata must have a jfif node
639 JFIFMarkerSegment jfif = null;
644 jfif = (JFIFMarkerSegment) metadata.findMarkerSegment
666 checkJFIF(jfif, destType, false);
668 if ((jfif != null) && (ignoreJFIF == false)) {
731 if (jfif != null) {
747 if (jfif != null) {
751 && (jfif.iccSegment != null))) {
788 if (jfif != null) {
820 if (jfif !
1353 checkJFIF(JFIFMarkerSegment jfif, ImageTypeSpecifier type, boolean input) argument
[all...]
H A DJPEGImageReader.java1476 // Now check the jfif segments
1477 JFIFMarkerSegment jfif =
1481 if (jfif != null) {
1482 retval = (jfif.thumb == null) ? 0 : 1;
1483 retval += jfif.extSegments.size();
1501 // Now we know that there is a jfif segment
1502 JFIFMarkerSegment jfif =
1505 return jfif.getThumbnailWidth(thumbnailIndex);
1521 // Now we know that there is a jfif segment
1522 JFIFMarkerSegment jfif
[all...]
H A DJFIFMarkerSegment.java612 JFIFMarkerSegment jfif = new JFIFMarkerSegment();
613 jfif.writeWithThumbs(ios, thumbnails, writer);
1181 // Remove the jfif segment, which should be there.
1182 MarkerSegment jfif = metadata.findMarkerSegment
1184 if (jfif == null) {
1188 metadata.markerSequence.remove(jfif);
1204 Node jfif = jfifs.item(0);
1205 Node parent = jfif.getParentNode();
1206 parent.removeChild(jfif);

Completed in 44 milliseconds