「java处理jpeg」Java处理jpeg流怎么保存视频

博主:adminadmin 2022-12-15 10:51:06 80

今天给各位分享java处理jpeg的知识,其中也会对Java处理jpeg流怎么保存视频进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!

本文目录一览:

用JAVA做一个JPEG图像生成器

运行下试试!·

import java.awt.*;

import java.util.*;

import java.awt.geom.*;

import java.awt.image.*;

import java.awt.event.*;

import java.io.*;

import javax.swing.*;

import com.sun.image.codec.jpeg.*;

class Point

{int x,y;

Point(int x,int y)

{this.x=x;this.y=y;

}

}

public class MakeJPEG extends Canvas implements MouseMotionListener,MouseListener,ActionListener

{

int x=-1,y=-1,橡皮擦通知=0,清除通知=0;

Vector v=null;int n=1;

Graphics2D ggg ;

BufferedImage image;

Frame window;

Button 保存,调色板,橡皮,清除,画笔,获取屏幕,绘制图形;

Color 画笔颜色;

Panel pCenter,pSouth,pNorth;

public MakeJPEG()

{

保存=new Button("将绘制的图形或屏幕保存为JPG文件");

获取屏幕=new Button("获取屏幕");

绘制图形=new Button("绘制图形");

调色板=new Button("打开调色板");

画笔=new Button("画笔");

橡皮=new Button("橡皮");

清除=new Button("清除");

调色板.addActionListener(this);

绘制图形.addActionListener(this);

保存.addActionListener(this);

画笔.addActionListener(this);

橡皮.addActionListener(this);

清除.addActionListener(this);

获取屏幕.addActionListener(this);

画笔颜色=new Color(0,0,0);

addMouseMotionListener(this);

addMouseListener(this);

v=new Vector();

setBackground(Color.white);

image=new BufferedImage(200,200,BufferedImage.TYPE_INT_RGB);

ggg=image.createGraphics();

Rectangle2D rect=new Rectangle2D.Double(0,0,200,200);

ggg.setColor(getBackground());

ggg.fill(rect);

window=new Frame("JPEG图像生成器");

pCenter=new Panel();

pCenter.setLayout(null);

pCenter.add(this);

pCenter.setBackground(Color.gray);

this.setBounds(80,30,210,210);

window.add(pCenter,BorderLayout.CENTER);

pNorth=new Panel();

pNorth.add(保存);

pNorth.add(绘制图形);

pNorth.add(获取屏幕);

window.add(pNorth,BorderLayout.NORTH);

pSouth=new Panel();

pSouth.add(调色板);

pSouth.add(橡皮);

pSouth.add(清除);

pSouth.add(画笔);

window.add(pSouth,BorderLayout.SOUTH);

window.setVisible(true);

window.addWindowListener(new WindowAdapter()

{

public void windowClosing(WindowEvent e)

{

System.exit(0);

}

});

window.setBounds(100,80,390,380);

window.validate();

}

public void paint(Graphics g)

{

if(x!=-1y!=-1橡皮擦通知==0清除通知==0)

{

g.setColor(画笔颜色);

n=v.size();

for(int i=0;in-1;i++)

{

Point p1=(Point)v.elementAt(i);

Point p2=(Point)v.elementAt(i+1);

g.drawLine(p1.x,p1.y,p2.x,p2.y);

ggg.setColor(g.getColor());

ggg.drawLine(p1.x,p1.y,p2.x,p2.y);

}

}

else if(橡皮擦通知==1清除通知==0)

{

g.setColor(getBackground());

g.fillRect(x-2,y-2,4,4);

ggg.setColor(getBackground());

ggg.fillRect(x-2,y-2,4,4);

}

else if(清除通知==1橡皮擦通知==0)

{

g.setColor(getBackground());

g.fillRect(0,0,200,200);

ggg.setColor(getBackground());

ggg.fillRect(0,0,200,200);

}

g.drawImage(image,0,0,200,200,this);

}

public void mouseDragged(MouseEvent e)

{

x=(int)e.getX();

y=(int)e.getY();

Point p=new Point(x,y);

v.addElement(p);

repaint();

}

public void mouseMoved(MouseEvent e)

{}

public void mousePressed(MouseEvent e)

{}

public void mouseReleased(MouseEvent e)

{

v.removeAllElements();

}

public void mouseEntered(MouseEvent e){}

public void mouseExited(MouseEvent e){}

public void mouseClicked(MouseEvent e){}

public void update(Graphics g)

{

{

paint(g);

}

}

public void actionPerformed(ActionEvent e)

{

if(e.getSource()==橡皮)

{

橡皮擦通知=1;

清除通知=0 ;

}

else if(e.getSource()==清除)

{

清除通知=1;

橡皮擦通知=0;

repaint();

}

else if(e.getSource()==画笔)

{

橡皮擦通知=0;

清除通知=0;

}

else if(e.getSource()==保存)

{

FileDialog savedialog=new FileDialog(window,"保存图型到JPG格式",FileDialog.SAVE);

savedialog.setVisible(true);

if(savedialog.getFile()!=null)

{

try{

String fileName=savedialog.getFile();

FileOutputStream out=new FileOutputStream(fileName);

JPEGImageEncoder encoder=JPEGCodec.createJPEGEncoder(out);

JPEGEncodeParam param=encoder.getDefaultJPEGEncodeParam(image);

param.setQuality(1.0f,false);

encoder.setJPEGEncodeParam(param);

encoder.encode(image);

out.close();

}

catch(Exception EE)

{

}

}

}

else if(e.getSource()==获取屏幕)

{

Robot robot=null;

try{

robot=new Robot();

}

catch(Exception er)

{

}

Rectangle screenRect=null;

int width=getToolkit().getScreenSize().width;

int height=getToolkit().getScreenSize().height;

screenRect=new Rectangle(0,0,width,height);

window.setVisible(false);

this.window.setVisible(false);

image=robot.createScreenCapture(screenRect);

window.setVisible(true);

repaint();

}

else if(e.getSource()==调色板)

{

Color tempColor=JColorChooser.showDialog(window,"调色板",画笔颜色);

{

if(tempColor!=null)

{

画笔颜色=tempColor;

画笔.setForeground(画笔颜色);

}

}

}

else if(e.getSource()==绘制图形)

{

window.dispose();

this.window.dispose();

MakeJPEG canvas=new MakeJPEG();

}

}

public static void main(String args[])

{

new MakeJPEG();

}

}

java中的JPEGImageEncoder使用

JPEGCodec.createJPEGEncoder的作用是创建一个和指定输出流关联的JPEGImageEncoder对象。

你这里的问题主要是输出流使用了response的输出流,如果这个代码是在servlet中书写的话,是没有问题的,但是,现在你是书写在jsp中,jsp将被传输给客户端,说白了,response的输出流已经被占用了,这里还向其中写图片的内容,所以就会出错。

如何用java转换图像格式为jpg

import java.awt.image.BufferedImage;

import java.io.*;

import javax.imageio.ImageIO;

public class ImageFormat {

public static void main(String[] args) {

File file = new File("c:\\test.jpg");

changFormat(file, "png", new File("c:\\test.png"));// 转为png

changFormat(file, "bmp", new File("c:\\test.bmp"));// 转为bmp

//changFormat(file, "jpeg", new File("c:\\test.jpg"));// 转为jpg

changFormat(file, "gif", new File("c:\\test.gif"));// 转为gif

}

//第一个参数 原图的File对象 第二个参数 目标格式 第三个参数 输出图像的File对象

public static void changFormat(File srcFile, String format, File formatFile) {

try {

BufferedImage srcImg = ImageIO.read(srcFile);// 读取原图

ImageIO.write(srcImg, format, formatFile);// 用指定格式输出到指定文件

} catch (IOException e) {

e.printStackTrace();

}

}

}

java处理jpeg的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于Java处理jpeg流怎么保存视频、java处理jpeg的信息别忘了在本站进行查找喔。

The End

发布于:2022-12-15,除非注明,否则均为首码项目网原创文章,转载请注明出处。