• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java TiffConstants类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.sanselan.formats.tiff.constants.TiffConstants的典型用法代码示例。如果您正苦于以下问题:Java TiffConstants类的具体用法?Java TiffConstants怎么用?Java TiffConstants使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



TiffConstants类属于org.apache.sanselan.formats.tiff.constants包,在下文中一共展示了TiffConstants类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getTiffExposureProgram

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public static String getTiffExposureProgram(Integer exposureProgramValue) {
    if (exposureProgramValue == null || exposureProgramValue == 0) {
        // not defined or unknown
        return null;
    }

    switch (exposureProgramValue) {
        case TiffConstants.EXPOSURE_PROGRAM_VALUE_PROGRAM_AE:
            return "Program AE";
        case TiffConstants.EXPOSURE_PROGRAM_VALUE_APERTURE_PRIORITY_AE:
            return "Aperture priority AE";
        case TiffConstants.EXPOSURE_PROGRAM_VALUE_SHUTTER_SPEED_PRIORITY_AE:
            return "Shutter speed priority AE";
        case TiffConstants.EXPOSURE_PROGRAM_VALUE_CREATIVE_SLOW_SPEED:
            return "Creative slow speed";
        case TiffConstants.EXPOSURE_PROGRAM_VALUE_ACTION_HIGH_SPEED:
            return "Action high speed";
        case TiffConstants.EXPOSURE_PROGRAM_VALUE_PORTRAIT:
            return "Portrait";
        case TiffConstants.EXPOSURE_PROGRAM_VALUE_LANDSCAPE:
            return "Landscape";
        default:
            // not defined or unknown
            return null;
    }
}
 
开发者ID:imCodePartnerAB,项目名称:imcms,代码行数:27,代码来源:ExifUtils.java


示例2: TiffHeader

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public TiffHeader(final int byteOrder, int tiffVersion, int offsetToFirstIFD)
{
	super(0, TiffConstants.TIFF_HEADER_SIZE);

	this.byteOrder = byteOrder;
	this.tiffVersion = tiffVersion;
	this.offsetToFirstIFD = offsetToFirstIFD;
}
 
开发者ID:fulcrumapp,项目名称:sanselan-android,代码行数:9,代码来源:TiffHeader.java


示例3: imageWriteExample

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public static byte[] imageWriteExample(final File file)
		throws ImageReadException, ImageWriteException, IOException {
	// read image
	final BufferedImage image = Sanselan.getBufferedImage(file);
	final ImageFormat format = ImageFormat.IMAGE_FORMAT_TIFF;
	final Map<String, Object> params = new HashMap<String, Object>();

	// set optional parameters if you like
	params.put(SanselanConstants.PARAM_KEY_COMPRESSION, new Integer(
			TiffConstants.TIFF_COMPRESSION_UNCOMPRESSED));

	final byte[] bytes = Sanselan.writeImageToBytes(image, format, params);
	return bytes;
}
 
开发者ID:shaolinwu,项目名称:uimaster,代码行数:15,代码来源:ImageUtil.java


示例4: TiffHeader

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public TiffHeader(final int byteOrder, int tiffVersion, int offsetToFirstIFD)
{
    super(0, TiffConstants.TIFF_HEADER_SIZE);

    this.byteOrder = byteOrder;
    this.tiffVersion = tiffVersion;
    this.offsetToFirstIFD = offsetToFirstIFD;
}
 
开发者ID:mike10004,项目名称:appengine-imaging,代码行数:9,代码来源:TiffHeader.java


示例5: getTiffFlash

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public static Flash getTiffFlash(Integer flashValue) {
    Flash flash;

    if (null == flashValue) {
        flash = Flash.NOT_FIRED;
    } else if (flashValue == TiffConstants.FLASH_VALUE_FIRED
            || flashValue == TiffConstants.FLASH_VALUE_FIRED_RETURN_NOT_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_FIRED_RETURN_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_ON
            || flashValue == TiffConstants.FLASH_VALUE_ON_RETURN_NOT_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_ON_RETURN_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_AUTO_FIRED
            || flashValue == TiffConstants.FLASH_VALUE_AUTO_FIRED_RETURN_NOT_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_AUTO_FIRED_RETURN_DETECTED)
    {
        flash = Flash.FIRED;
    } else if (flashValue == TiffConstants.FLASH_VALUE_FIRED_RED_EYE_REDUCTION
            || flashValue == TiffConstants.FLASH_VALUE_FIRED_RED_EYE_REDUCTION_RETURN_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_FIRED_RED_EYE_REDUCTION_RETURN_NOT_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_AUTO_FIRED_RED_EYE_REDUCTION
            || flashValue == TiffConstants.FLASH_VALUE_AUTO_FIRED_RED_EYE_REDUCTION_RETURN_NOT_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_AUTO_FIRED_RED_EYE_REDUCTION_RETURN_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_ON_RED_EYE_REDUCTION
            || flashValue == TiffConstants.FLASH_VALUE_ON_RED_EYE_REDUCTION_RETURN_NOT_DETECTED
            || flashValue == TiffConstants.FLASH_VALUE_ON_RED_EYE_REDUCTION_RETURN_DETECTED)
    {
        flash = Flash.FIRED_WITH_RED_EYES_REDUCTION;
    } else {
        flash = Flash.NOT_FIRED;
    }

    return flash;
}
 
开发者ID:imCodePartnerAB,项目名称:imcms,代码行数:34,代码来源:ExifUtils.java


示例6: getTiffColorSpace

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public static String getTiffColorSpace(Integer colorSpaceValue) {
    if (colorSpaceValue == null) {
        return null;
    }

    switch (colorSpaceValue) {
        case TiffConstants.COLOR_SPACE_VALUE_ADOBE_RGB:
            return "Adobe RGB";
        default:
            return "sRGB";
    }
}
 
开发者ID:imCodePartnerAB,项目名称:imcms,代码行数:13,代码来源:ExifUtils.java


示例7: getGPS

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public GPSInfo getGPS() throws ImageReadException
{
	TiffDirectory gpsDirectory = findDirectory(DIRECTORY_TYPE_GPS);
	if (null == gpsDirectory)
		return null;

	// more specific example of how to access GPS values.
	TiffField latitudeRefField = gpsDirectory
			.findField(TiffConstants.GPS_TAG_GPS_LATITUDE_REF);
	TiffField latitudeField = gpsDirectory
			.findField(TiffConstants.GPS_TAG_GPS_LATITUDE);
	TiffField longitudeRefField = gpsDirectory
			.findField(TiffConstants.GPS_TAG_GPS_LONGITUDE_REF);
	TiffField longitudeField = gpsDirectory
			.findField(TiffConstants.GPS_TAG_GPS_LONGITUDE);

	if (latitudeRefField == null || latitudeField == null
			|| longitudeRefField == null || longitudeField == null)
		return null;

	// all of these values are strings.
	String latitudeRef = latitudeRefField.getStringValue();
	RationalNumber latitude[] = (RationalNumber[]) latitudeField.getValue();
	String longitudeRef = longitudeRefField.getStringValue();
	RationalNumber longitude[] = (RationalNumber[]) longitudeField
			.getValue();

	if (latitude.length != 3 || longitude.length != 3)
		throw new ImageReadException(
				"Expected three values for latitude and longitude.");

	RationalNumber latitudeDegrees = latitude[0];
	RationalNumber latitudeMinutes = latitude[1];
	RationalNumber latitudeSeconds = latitude[2];

	RationalNumber longitudeDegrees = longitude[0];
	RationalNumber longitudeMinutes = longitude[1];
	RationalNumber longitudeSeconds = longitude[2];

	return new GPSInfo(latitudeRef, longitudeRef, latitudeDegrees,
			latitudeMinutes, latitudeSeconds, longitudeDegrees,
			longitudeMinutes, longitudeSeconds);
}
 
开发者ID:fulcrumapp,项目名称:sanselan-android,代码行数:44,代码来源:TiffImageMetadata.java


示例8: TiffOutputSet

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public TiffOutputSet()
{
	this(TiffConstants.DEFAULT_TIFF_BYTE_ORDER);
}
 
开发者ID:fulcrumapp,项目名称:sanselan-android,代码行数:5,代码来源:TiffOutputSet.java


示例9: addSanselanProperties

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
/**
 * @param metadata
 * @param image
 * @return Whether any properties has been updated
 */
private boolean addSanselanProperties(IImageMetadata metadata, Image image) throws Exception {
	boolean isSomethingDifferent = false;
	if (metadata instanceof JpegImageMetadata) {
		JpegImageMetadata jpegMetadata = (JpegImageMetadata) metadata;
		StringBuffer keywords = null;
		StringBuffer spatial = null;

		for (Object o : jpegMetadata.getItems()) {
			if (o instanceof ImageMetadata.Item) {
				ImageMetadata.Item item = (ImageMetadata.Item) o;
				if (item.getKeyword().equals("Object Name") && image.getTitle() == null) {
					image.setTitle(sanitizer.sanitize(item.getText()));
					isSomethingDifferent = true;
				} else if (item.getKeyword().equals("Keywords")) {
					if (keywords == null) {
						keywords = new StringBuffer();
						keywords.append(item.getText());
					} else {
						keywords.append(", " + item.getText());
					}
				} else if (item.getKeyword().equals("Sublocation")
						|| item.getKeyword().equals("Province/State")
						|| item.getKeyword().equals("Country/Primary Location Name")) {
					if (spatial == null) {
						spatial = new StringBuffer();
						spatial.append(item.getText());
					} else {
						spatial.append(", " + item.getText());
					}
				}
			}
		}
		if (spatial != null && image.getSpatial() == null) {
			image.setSpatial(sanitizer.sanitize(spatial.toString()));
			isSomethingDifferent = true;
		}
		if (keywords != null && image.getSubject() == null) {
			image.setSubject(sanitizer.sanitize(keywords.toString()));
			isSomethingDifferent = true;
		}
		if (jpegMetadata.findEXIFValue(TiffConstants.TIFF_TAG_ARTIST) != null
				&& image.getCreator() == null) {
			image.setCreator(sanitizer.sanitize(jpegMetadata.findEXIFValue(
					TiffConstants.TIFF_TAG_ARTIST).getStringValue()));
			isSomethingDifferent = true;
		}
		if (jpegMetadata.findEXIFValue(TiffConstants.TIFF_TAG_COPYRIGHT) != null
				&& image.getRights() == null) {

			image.setRights(sanitizer.sanitize(jpegMetadata.findEXIFValue(
					TiffConstants.TIFF_TAG_COPYRIGHT).getStringValue()));
			isSomethingDifferent = true;
		}
		if (jpegMetadata.findEXIFValue(TiffConstants.TIFF_TAG_IMAGE_DESCRIPTION) != null
				&& image.getDescription() == null) {
			image.setDescription(sanitizer.sanitize(jpegMetadata.findEXIFValue(
					TiffConstants.TIFF_TAG_IMAGE_DESCRIPTION)
					.getStringValue()));
			isSomethingDifferent = true;
		}
		TiffImageMetadata exifMetadata = jpegMetadata.getExif();
		if (exifMetadata != null) {
			TiffImageMetadata.GPSInfo gpsInfo = exifMetadata.getGPS();
			if (gpsInfo != null && image.getLocation() == null) {
				image.setLongitude(gpsInfo.getLongitudeAsDegreesEast());
				image.setLatitude(gpsInfo.getLatitudeAsDegreesNorth());
				isSomethingDifferent = true;
			}
		}
	}
	return isSomethingDifferent ;
}
 
开发者ID:RBGKew,项目名称:eMonocot,代码行数:78,代码来源:ImageMetadataExtractorImpl.java


示例10: getGPS

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public GPSInfo getGPS() throws ImageReadException
{
    TiffDirectory gpsDirectory = findDirectory(DIRECTORY_TYPE_GPS);
    if (null == gpsDirectory)
        return null;

    // more specific example of how to access GPS values.
    TiffField latitudeRefField = gpsDirectory
            .findField(TiffConstants.GPS_TAG_GPS_LATITUDE_REF);
    TiffField latitudeField = gpsDirectory
            .findField(TiffConstants.GPS_TAG_GPS_LATITUDE);
    TiffField longitudeRefField = gpsDirectory
            .findField(TiffConstants.GPS_TAG_GPS_LONGITUDE_REF);
    TiffField longitudeField = gpsDirectory
            .findField(TiffConstants.GPS_TAG_GPS_LONGITUDE);

    if (latitudeRefField == null || latitudeField == null
            || longitudeRefField == null || longitudeField == null)
        return null;

    // all of these values are strings.
    String latitudeRef = latitudeRefField.getStringValue();
    RationalNumber latitude[] = (RationalNumber[]) latitudeField.getValue();
    String longitudeRef = longitudeRefField.getStringValue();
    RationalNumber longitude[] = (RationalNumber[]) longitudeField
            .getValue();

    if (latitude.length != 3 || longitude.length != 3)
        throw new ImageReadException(
                "Expected three values for latitude and longitude.");

    RationalNumber latitudeDegrees = latitude[0];
    RationalNumber latitudeMinutes = latitude[1];
    RationalNumber latitudeSeconds = latitude[2];

    RationalNumber longitudeDegrees = longitude[0];
    RationalNumber longitudeMinutes = longitude[1];
    RationalNumber longitudeSeconds = longitude[2];

    return new GPSInfo(latitudeRef, longitudeRef, latitudeDegrees,
            latitudeMinutes, latitudeSeconds, longitudeDegrees,
            longitudeMinutes, longitudeSeconds);
}
 
开发者ID:mike10004,项目名称:appengine-imaging,代码行数:44,代码来源:TiffImageMetadata.java


示例11: TiffOutputSet

import org.apache.sanselan.formats.tiff.constants.TiffConstants; //导入依赖的package包/类
public TiffOutputSet()
{
    this(TiffConstants.DEFAULT_TIFF_BYTE_ORDER);
}
 
开发者ID:mike10004,项目名称:appengine-imaging,代码行数:5,代码来源:TiffOutputSet.java



注:本文中的org.apache.sanselan.formats.tiff.constants.TiffConstants类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Row11类代码示例发布时间:2022-05-23
下一篇:
Java DiscUsage类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap