// 添加水印,filePath 源图片路径, watermark 水印图片路径
public static boolean createMark(String filePath,String watermark) {
ImageIcon imgIcon = new ImageIcon(filePath);
Image theImg = imgIcon.getImage();
ImageIcon waterIcon = new ImageIcon(watermark);
Image waterImg = waterIcon.getImage();
int width = theImg.getWidth( null );
int height = theImg.getHeight( null );
BufferedImage bimage = new BufferedImage(width,height, BufferedImage.TYPE_INT_RGB);
Graphics2D g = bimage.creatGraphics( );
g.setColor(Color.red);
g.setBackground(Color.white);
g.drawImage(theImg, 0 , 0 , null );
g.drawImage(waterImg, 100 , 100 , null );
g.drawString( " 12233 " , 10 , 10 ); // 添加文字
g.dispose();
try {
FileOutputStream out = new FileOutputStream(filePath);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bimage);
param.setQuality(50f, true );
encoder.encode(bimage, param);
out.close();
} catch (Exception e) { return false ; }
return true ;
}
JAVA给图片上添加水印文字
import java.awt. * ;
import java.awt.image. * ;
import java.io. * ;
import javax.swing. * ;
import com.sun.image.codec.jpeg. * ;
import java.text.AttributedString;
import java.awt.font.TextAttribute;
import java.text.AttributedCharacterIterator;
public class WaterMark {
/** */ /** */ /** */ /**
* 给图片添加水印
* @param filePath 需要添加水印的图片的路径
* @param markContent 水印的文字
* @param markContentColor 水印文字的颜色
* @param qualNum 图片质量
* @param fontType 字体
* @param fontsize 字体大小
* @return
* @author zhongweihai newwei2001@yahoo.com.cn
*/
public boolean createMark(String filePath,String markContent,Color markContentColor, float qualNum,
String fontType, int fontSize)
{
ImageIcon imgIcon = new ImageIcon(filePath);
Image theImg = imgIcon.getImage();
int width = theImg.getWidth( null );
int height = theImg.getHeight( null );
BufferedImage bimage = new BufferedImage(width,height, BufferedImage.TYPE_INT_RGB);
Graphics2D g = bimage.createGraphics();
g.setColor(markContentColor);
g.setBackground(Color.white);
g.drawImage(theImg, 0 , 0 , null );
AttributedString ats = new AttributedString(markContent);
Font f = new Font(fontType,Font.BOLD, fontSize);
ats.addAttribute(TextAttribute.FONT, f, 0 ,markContent.length() );
AttributedCharacterIterator iter = ats.getIterator();
g.drawString(iter,width / 5 ,height / 5 ); // 添加水印的文字和设置水印文字出现的内容
g.dispose();
try {
FileOutputStream out = new FileOutputStream(filePath);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bimage);
param.setQuality(qualNum, true );
encoder.encode(bimage, param);
out.close();
} catch (Exception e)
{ return false ; }
return true ;
}
public static void main(String[] args)
{
WaterMark wm = new WaterMark();
wm.createMark( " c:\year2-11.jpg " , " 此图片来自煞笔网 " ,Color.red,70f, " 黑体 " , 23 );
}
} 生成缩小jpg图片程序
import java.awt.image.BufferedImage;
import java.io.File;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.imageio.ImageIO;
import java.awt.image.AffineTransformOp;
import java.awt.geom.AffineTransform;
import java.awt.Image;
public class ZoomPicture {
public static void main(String arg[]) {
String filePath = " g:/图片.jpg " ; // 图片的位置
int height = 50 ;
int width = 150 ;
Icon icon = null ;
try {
icon = getFixedBoundIcon(filePath,height,width);
} catch (Exception e) {
System.out.println( " exception : " + e);
}
System.out.println( " ### " + icon); // 生成新图片的位置;
}
public static Icon getFixedBoundIcon(String filePath, int height, int width)
throws Exception {
double Ratio = 0.0 ;
// 缩放比例
File F = new File(filePath);
if ( ! F.isFile()) throw new Exception
(F + " is not image file error in getFixedBoundIcon! " );
Icon ret = new ImageIcon(filePath);
BufferedImage Bi = ImageIO.read(F);
if ((Bi.getHeight() > height) || (Bi.getWidth() > width)) {
if (Bi.getHeight() > Bi.getWidth()) {
Ratio = ( new Integer(height)).doubleValue() / Bi.getHeight();
}
else {
Ratio = ( new Integer(width)).doubleValue() / Bi.getWidth();
}
int lastLength = filePath.lastIndexOf( " . " );
String subFilePath = filePath.substring( 0 ,lastLength);
String fileType = filePath.substring(lastLength);
File zoomFile = new File(subFilePath + " _ " + height + " _ " + width + fileType);
Image Itemp = Bi.getScaledInstance (width,height,Bi.SCALE_SMOOTH);
AffineTransformOp op = new AffineTransformOp
(AffineTransform.getScaleInstance(Ratio, Ratio), null );
Itemp = op.filter(Bi, null );
try {
ImageIO.write((BufferedImage)Itemp, " jpg " , zoomFile);
ret = new ImageIcon(zoomFile.getPath());
} catch (Exception ex) {
System.out.println( " ######## here error : " + ex);
}
}
return ret;
}
}
分享到:
相关推荐
综上所述,通过结合JSP、Java后端处理和jQuery Uploadify插件,我们可以创建一个功能完善的图片水印系统,既满足了图片上传的需求,又实现了高效、美观的水印添加。在实际应用中,还可以考虑进一步优化,比如增加...
综上所述,实现"jsp上传图片并生成缩略图"的过程涉及到文件上传处理、图片的读取与缩放、文件存储以及错误处理等多方面技术。通过合理的设计和选用合适的工具库,可以在JSP中有效地实现这一功能。在实际开发中,还...
【标题】:“基于jsp实现图片网页视频加水印”这一项目是软件工程课程的一个实践作业,旨在通过Java Web技术实现在网页、图片以及视频上添加水印的功能。这个任务不仅涵盖了基本的编程技能,还涉及到了软件开发的全...
在这个特定的场景中,"JSP上传图片并生成缩略图"是一个常见的功能需求,尤其是在开发包含用户交互和多媒体内容的Web应用时。下面我们将详细探讨这一技术实现的关键知识点。 首先,**上传组件**是Web应用中用于接收...
将上述知识点结合,我们可以创建一个Struts2 Action,接受用户上传的图片,然后在服务器端对图片进行处理,如添加水印并调整大小。首先,Action类需要声明一个`File`类型的字段和对应的字符串字段,用于接收文件。...
在`CreateImg.aspx`或`CreateImg.jsp`这样的文件中,可能会有一个表单或按钮让用户上传图片并应用水印。`Main.mxml`是主应用程序文件,可能包含处理用户交互的逻辑。 5. **样式表(CSS)**: `main.css`文件用于定义...
本文主要探讨如何使用JSP实现图片上传并添加水印的功能。 首先,我们需要理解图片上传的基本流程。用户通过网页提交一个表单,表单中包含一个`<input type="file">`元素,允许用户选择本地的图片文件。当用户提交...
综上所述,JSP上传图片并缩放裁切的程序涉及到前端表单提交、后端文件处理、图像操作和返回结果等多个环节。理解并熟练掌握这些技术,可以提升Web应用的用户体验和功能完整性。在实际项目中,还可以结合CSS和...
【标题】:“jsp在线编辑器可以批量上传图片/加水印” 在网页开发中,有时候我们需要用户能够在线编辑文本,并且能方便地上传图片。JSP(JavaServer Pages)是一种服务器端脚本语言,用于创建动态网页。在这个场景...
在这个特定的场景下,我们讨论的是如何利用JSP的过滤器(Filter)机制来在不破坏原图质量的情况下,为图片添加水印。下面我们将详细探讨这一技术。 首先,我们需要了解JSP过滤器的基本概念。在Servlet规范中,过滤...
绝对好使。不好不要钱. import java.awt.*; import java.awt.image.*; import java.io.*; import javax.swing.*; ...import java.text.AttributedString;...import java.awt.font.TextAttribute;...import java.text....
**JSP验证图片码生成**是Web开发中一种常见的安全机制,主要用于防止自动化脚本或机器人进行非法操作,如防止恶意注册、重复提交等。在这个压缩包中,包含了一个名为`yz.jsp`的文件,这是一个基于JavaServer Pages ...
在Web开发中,有时我们需要...总之,JSP结合Java的图形库可以实现动态生成图片并在页面上显示的功能,这对于创建交互式、数据驱动的Web应用程序非常有用。同时,了解文件上传和下载的处理方式也是Web开发中的重要技能。
在本主题“利用jsp生成图片验证码”中,我们将探讨如何在JavaServer Pages (JSP)上下文中创建一个简单的图片验证码,而无需使用Servlet。首先,我们要明白JSP是Java Web开发中的视图层技术,它允许我们在HTML页面中...
我自己做的图片水印处理程序希望大家喜欢哦