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

/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGMetadata.java243 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
[all...]
H A DJPEGImageWriter.java343 // metadata must have a jfif node
642 JFIFMarkerSegment jfif = null;
647 jfif = (JFIFMarkerSegment) metadata.findMarkerSegment
669 checkJFIF(jfif, destType, false);
671 if ((jfif != null) && (ignoreJFIF == false)) {
734 if (jfif != null) {
750 if (jfif != null) {
754 && (jfif.iccSegment != null))) {
791 if (jfif != null) {
823 if (jfif !
1384 checkJFIF(JFIFMarkerSegment jfif, ImageTypeSpecifier type, boolean input) argument
[all...]
H A DJPEGImageReader.java1612 // Now check the jfif segments
1613 JFIFMarkerSegment jfif =
1617 if (jfif != null) {
1618 retval = (jfif.thumb == null) ? 0 : 1;
1619 retval += jfif.extSegments.size();
1637 // Now we know that there is a jfif segment
1638 JFIFMarkerSegment jfif =
1641 return jfif.getThumbnailWidth(thumbnailIndex);
1657 // Now we know that there is a jfif segment
1658 JFIFMarkerSegment jfif
[all...]
H A DJFIFMarkerSegment.java610 JFIFMarkerSegment jfif = new JFIFMarkerSegment();
611 jfif.writeWithThumbs(ios, thumbnails, writer);
1179 // Remove the jfif segment, which should be there.
1180 MarkerSegment jfif = metadata.findMarkerSegment
1182 if (jfif == null) {
1186 metadata.markerSequence.remove(jfif);
1202 Node jfif = jfifs.item(0);
1203 Node parent = jfif.getParentNode();
1204 parent.removeChild(jfif);
/openjdk9/jdk/test/javax/imageio/plugins/jpeg/
H A DMagentaEXIFTest.java178 Node jfif = variety.getFirstChild();
179 variety.removeChild(jfif);

Completed in 112 milliseconds