blob: 9663439f6c67bd68699c5dadb69ba0c876068e5d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.imaging.formats.jpeg.exif;
import java.io.File;
import java.io.IOException;
import org.apache.commons.imaging.ImageReadException;
import org.apache.commons.imaging.ImageWriteException;
import org.apache.commons.imaging.formats.tiff.TiffField;
import org.apache.commons.imaging.formats.tiff.constants.ExifTagConstants;
import org.apache.commons.imaging.formats.tiff.constants.GpsTagConstants;
import org.apache.commons.imaging.formats.tiff.constants.TiffDirectoryType;
import org.apache.commons.imaging.util.Debug;
public class TextFieldTest extends SpecificExifTagTest
{
// public TextFieldTest(String name)
// {
// super(name);
// }
@Override
protected void checkField(File imageFile, TiffField field)
throws IOException, ImageReadException, ImageWriteException
{
if (field.tag == ExifTagConstants.EXIF_TAG_USER_COMMENT.tag)
{ /* do nothing */ }
else if (field.tag == GpsTagConstants.GPS_TAG_GPS_PROCESSING_METHOD.tag
&& field.directoryType == TiffDirectoryType.EXIF_DIRECTORY_GPS.directoryType)
{ /* do nothing */ }
else if (field.tag == GpsTagConstants.GPS_TAG_GPS_AREA_INFORMATION.tag
&& field.directoryType == TiffDirectoryType.EXIF_DIRECTORY_GPS.directoryType)
{ /* do nothing */ }
else
return;
// Debug.debug("field", field);
// Debug.debug("field", Debug.getType(field));
//
// Debug.debug("field", field.tag);
// Debug.debug("field", field.tagInfo);
// Debug.debug("field", Debug.getType(field));
try
{
Object textFieldValue = field.getValue();
// Debug.debug("imageFile", imageFile.getAbsoluteFile());
// Debug.debug("Text field value(" + field.tagInfo.name + ")",
// textFieldValue);
// Debug.debug("userCommentValue", Debug.getType(userCommentValue));
}
catch (ImageReadException e)
{
Debug.debug("imageFile", imageFile.getAbsoluteFile());
Debug.debug(e);
throw e;
}
}
}