package com.thinkgem.jeesite.modules.file.utils;
import com.drew.imaging.ImageMetadataReader;
import com.drew.imaging.ImageProcessingException;
import com.drew.metadata.Directory;
import com.drew.metadata.Metadata;
import com.drew.metadata.Tag;
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;
public class ImageUtils {
/**
* 图片去白色的背景,并裁切
*
* @param image 图片
* @param range 范围 1-255 越大 容错越高 去掉的背景越多
* @return 图片
* @throws Exception 异常
*/
public static byte[] transferAlpha(Image image, InputStream in, int range) throws Exception {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
try {
ImageIcon imageIcon = new ImageIcon(image);
BufferedImage bufferedImage = new BufferedImage(imageIcon
.getIconWidth(), imageIcon.getIconHeight(),
BufferedImage.TYPE_4BYTE_ABGR);
Graphics2D g2D = (Graphics2D) bufferedImage.getGraphics();
g2D.drawImage(imageIcon.getImage(), 0, 0, imageIcon
.getImageObserver());
int alpha = 0;
int minX = bufferedImage.getWidth();
int minY = bufferedImage.getHeight();
int maxX = 0;
int maxY = 0;
for (int j1 = bufferedImage.getMinY(); j1 < bufferedImage
.getHeight(); j1++) {
for (int j2 = bufferedImage.getMinX(); j2 < bufferedImage
.getWidth(); j2++) {
int rgb = bufferedImage.getRGB(j2, j1);
int R = (rgb & 0xff0000) >> 16;
int G = (rgb & 0xff00) >> 8;
int B = (rgb & 0xff);
if (((255 - R) < range) && ((255 - G) < range) && ((255 - B) < range)) { //去除白色背景;
rgb = ((alpha + 1) << 24) | (rgb & 0x00ffffff);
} else {
minX = minX <= j2 ? minX : j2;
minY = minY <= j1 ? minY : j1;
maxX = maxX >= j2 ? maxX : j2;
maxY = maxY >= j1 ? maxY : j1;
}
bufferedImage.setRGB(j2, j1, rgb);
}
}
int width = maxX - minX;
int height = maxY - minY;
BufferedImage sub = bufferedImage.getSubimage(minX, minY, width, height);
int degree = getDegree(in);
sub = rotateImage(sub,degree);
ImageIO.write(sub, "png", byteArrayOutputStream);
} catch (Exception e) {
e.printStackTrace();
throw e;
}
return byteArrayOutputStream.toByteArray();
}
/**
* 图片旋转
* @param bufferedimage bufferedimage
* @param degree 旋转的角度
* @return BufferedImage
*/
public static BufferedImage rotateImage(final BufferedImage bufferedimage,
final int degree) {
int w = bufferedimage.getWidth();
int h = bufferedimage.getHeight();
Rectangle rect_des = CalcRotatedSize(new Rectangle(new Dimension(
w, h)), degree);
int type = bufferedimage.getColorModel().getTransparency();
BufferedImage img;
Graphics2D graphics2d;
(graphics2d = (img = new BufferedImage(rect_des.width, rect_des.height, type))
.createGraphics()).setRenderingHint(
RenderingHints.KEY_INTERPOLATION,
RenderingHints.VALUE_INTERPOLATION_BILINEAR);
graphics2d.translate((rect_des.width - w) / 2,
(rect_des.height - h) / 2);
graphics2d.rotate(Math.toRadians(degree), w / 2, h / 2);
graphics2d.drawImage(bufferedimage, 0, 0, null);
graphics2d.dispose();
return img;
}
/**
* 计算旋转后图像的大小
* @param src Rectangle
* @param degree 旋转的角度
* @return Rectangle
*/
public static Rectangle CalcRotatedSize(Rectangle src, int degree) {
if (degree >= 90) {
if(degree / 90 % 2 == 1){
int temp = src.height;
src.height = src.width;
src.width = temp;
}
degree = degree % 90;
}
double r = Math.sqrt(src.height * src.height + src.width * src.width) / 2;
double len = 2 * Math.sin(Math.toRadians(degree) / 2) * r;
double angel_alpha = (Math.PI - Math.toRadians(degree)) / 2;
double angel_dalta_width = Math.atan((double) src.height / src.width);
double angel_dalta_height = Math.atan((double) src.width / src.height);
int len_dalta_width = (int) (len * Math.cos(Math.PI - angel_alpha
- angel_dalta_width));
int len_dalta_height = (int) (len * Math.cos(Math.PI - angel_alpha
- angel_dalta_height));
int des_width = src.width + len_dalta_width * 2;
int des_height = src.height + len_dalta_height * 2;
return new java.awt.Rectangle(new Dimension(des_width, des_height));
}
/**
* byte[] ------>BufferedImage
*
* @param byteImage byteImage
* @return return
* @throws IOException IOException
*/
public static BufferedImage ByteToBufferedImage(byte[] byteImage) throws IOException {
ByteArrayInputStream in = new ByteArrayInputStream(byteImage);
return ImageIO.read(in);
}
/**
* 获取照片信息的旋转角度
* @param inputStream 照片的路径
* @return 角度
*/
public static int getDegree(InputStream inputStream) {
try {
Metadata metadata = ImageMetadataReader.readMetadata(new BufferedInputStream(inputStream),true);
for (Directory directory : metadata.getDirectories()) {
for (Tag tag : directory.getTags()) {
if ("Orientation".equals(tag.getTagName())) {
return turn(getOrientation(tag.getDescription()));
}
}
}
} catch (ImageProcessingException e) {
e.printStackTrace();
return 0;
} catch (IOException e) {
e.printStackTrace();
return 0;
}
return 0;
}
/**
* 获取旋转的角度
* @param orientation orientation
* @return 旋转的角度
*/
public static int turn(int orientation) {
Integer turn = 360;
if (orientation == 0 || orientation == 1) {
turn = 360;
} else if (orientation == 3) {
turn = 180;
} else if (orientation == 6) {
turn = 90;
} else if (orientation == 8) {
turn = 270;
}
return turn;
}
/**
* 根据图片自带的旋转的信息 获取 orientation
* @param orientation orientation
* @return orientation
*/
public static int getOrientation(String orientation) {
int tag = 0;
if ("Top, left side (Horizontal / normal)".equalsIgnoreCase(orientation)) {
tag = 1;
} else if ("Top, right side (Mirror horizontal)".equalsIgnoreCase(orientation)) {
tag = 2;
} else if ("Bottom, right side (Rotate 180)".equalsIgnoreCase(orientation)) {
tag = 3;
} else if ("Bottom, left side (Mirror vertical)".equalsIgnoreCase(orientation)) {
tag = 4;
} else if ("Left side, top (Mirror horizontal and rotate 270 CW)".equalsIgnoreCase(orientation)) {
tag = 5;
} else if ("Right side, top (Rotate 90 CW)".equalsIgnoreCase(orientation)) {
tag = 6;
} else if ("Right side, bottom (Mirror horizontal and rotate 90 CW)".equalsIgnoreCase(orientation)) {
tag = 7;
} else if ("Left side, bottom (Rotate 270 CW)".equalsIgnoreCase(orientation)) {
tag = 8;
}
return tag;
}
}
分享到:
相关推荐
本篇将详细探讨"java抠图程序"的相关知识点,帮助你理解如何使用Java来实现将白色背景的照片合成到任意背景图的过程。 首先,我们需要了解"抠图"这一概念。抠图,又称为图像剪裁或图像选取,是指从原始图像中提取出...
"Bayes自然图像抠图(Java实现)"是一个Java编程实现的算法,它利用贝叶斯理论来处理这一问题。贝叶斯方法是一种统计推理方法,它通过后验概率来更新先验概率,从而得出最佳的假设或预测。在图像处理中,这种思想被...
本文实例为大家分享了Opencv实现抠图替换背景图的具体代码,供大家参考,具体内容如下 下面简单图片演示一下: 提取mask: ===> 替换背景: + = python的opencv代码如下: # coding=utf-8 import cv2 import ...
本项目就是基于这些技术实现的一个在线抠图Demo,允许用户在网页上直接对图片进行抠图操作,无需下载安装任何软件。 一、Canvas抠图 Canvas是HTML5中的一个绘图元素,它允许开发者通过JavaScript进行动态图形绘制...
它可以帮助用户快速、准确地实现抠图效果,无需手动绘制边界或进行复杂的图像编辑操作。 一键抠图的原理通常基于计算机视觉和机器学习技术。它使用深度神经网络模型,通过训练大量的图像样本,学习如何识别和分离...
本文将详细介绍如何使用Java实现图片处理,具体包括图片的尺寸调整和指定位置的裁剪。 #### 1. 调整图片尺寸 在Java中,可以通过`BufferedImage`类来加载和操作图片,并使用`Image`接口提供的方法来进行图片尺寸的...
本教程将详细讲解如何使用Java的`java.awt.image`包来实现这一功能。 首先,我们需要理解Java中的图像处理基础。`java.awt.image`包提供了对图像的基本操作,如读取、写入和像素级别的编辑。核心类包括`...
19年10月3号更新 新资源地址https://download.csdn.net/download/b379685397/11831772。 使用教程见https://blog.csdn.net/b379685397/article/details/101940373 有问题可以私信我哦
Java图片滑动验证(登录验证)原理与实现方法详解中,我们详细介绍了Java图片滑动验证(登录验证)的原理和实现方法,包括计算小图轮廓、抠图、校验等步骤。这些步骤可以帮助开发者更好地理解和实现Java图片滑动...
JAVA-图像去除背景例子 用于去除带白色背景的图片
Java 实现图片滑动验证 Java 实现图片滑动验证是指使用 Java 语言来实现图片滑动验证功能,该功能主要用于防止机器人和恶意攻击。图片滑动验证是一种常用的验证码机制,它可以防止机器人和恶意攻击,保护网站和应用...
JavaCV实现图片去水印 从给定的文件信息中,我们可以看到,这篇文章主要介绍了如何通过JavaCV实现图片去水印,并提供了详细的示例代码。下面,我们将从标题、描述、标签和部分内容中提取相关知识点。 首先,让我们...
随机中文文字、随机抠图、拼图都只需要用到BufferedImage和Graphics2D。 3.2.前端熟悉点击事件,根据点击事件的坐标位置、图片的位置、浏览器的滚动位置算 出点击图片的相对位置;熟悉拖动原理。 3.3.坐标信息...
C#作为一门现代、面向对象的编程语言,提供了丰富的库和工具来实现图像处理任务,包括数字图像的抠图功能。抠图,也称为图像分割,是将目标对象从背景中分离出来的过程,这对于图像编辑、视频分析等应用至关重要。 ...
抠图软件图片背景透明工具(加强版)是一款专为用户设计的高效图像处理软件,它具有强大的功能,能够帮助用户轻松地将图片的背景部分去除,使其变得完全透明。这款加强版工具在原有的基础上增加了更多优化,使得抠图...
在本篇文章中,我们将深入探讨如何使用Qt框架来实现图像裁剪(俗称“抠图”)功能。通过具体的代码示例,我们将理解整个过程,并学习到如何加载图像、定义裁剪区域以及处理可能出现的问题。 ### Qt简介 Qt是一个跨...
微信小程序基于canvas实现纯色背景抠图功能,值得一看和学习;微信小程序基于canvas实现纯色背景抠图功能,值得一看和学习;微信小程序基于canvas实现纯色背景抠图功能,值得一看和学习;微信小程序基于canvas实现...
iOS实现简单抠图, 切换图片背景。类似ps效果。 轻松定制自己的美图秀秀 利用coreimage实现。 实现教程:http://blog.csdn.net/zhangao0086/article/details/39120331
包括按键事件的检测与处理(监测软键盘、监测物理按键、音量调节对话框)、触摸事件的检测与处理(手势事件的分发流程、手势事件处理MotionEvent、手写签名)、手势检测的实现与用法(手势检测器、飞掠视图、手势...
总之,"图片背景透明工具加强版"是一款强大的图像处理工具,它结合了先进的图像处理算法和友好的用户界面,帮助用户快速高效地完成抠图任务,并实现自定义的透明度效果。在数字媒体、设计和创意行业中,这样的工具...