Java怎么实现按比例缩小图片
使用spring注解上传文件@RequestParam(value="",required=true),required为true时不能传入空值,为false时反之;UploadFile.getOriginalFilename()获取上传的文件的文件名;System.nanoTime()返回当前时间的纳秒,用做文件名;FileUtils.writeByteArrayToFile()上传文件到本地目录;使用BufferedImage将图片加载到内存中,然后对图片进行修改如大小变换、图片变灰、设置透明等。效果
使用spring注解上传文件@RequestParam(value="", required=true),required为true时不能传入空值,为false时反之;UploadFile.getOriginalFilename()获取上传的文件的文件名;System.nanoTime()返回当前时间的纳秒,用做文件名;FileUtils.writeByteArrayToFile()上传文件到本地目录;使用BufferedImage将图片加载到内存中,然后对图片进行修改如大小变换、图片变灰、设置透明等。
效果图:

HTML:
form表单提交到java:
@SuppressWarnings("unused")
@RequestMapping(value="/IntOpers")
private void IntOper(@RequestParam(value="UploadFile", required=true) MultipartFile UploadFile, PrintWriter pw, HttpServletRequest request) throws IOException {
String StrReturn = "error", FileName = "", ext = "";
long time = 0;
if (!UploadFile.isEmpty()) {
if (UploadFile != null) {
String fullName = UploadFile.getOriginalFilename();
ext = fullName.substring(fullName.lastIndexOf("."));//获取扩展名称
time = System.nanoTime();
FileName = time + ext;//设置文件保存的名称
//原图
String upDir = "F:/java/upload-ssm";//文件上传路径
FileUtils.writeByteArrayToFile(new File(upDir, FileName), UploadFile.getBytes());
//缩小图片
Image srcFile = ImageIO.read(new File(upDir + "/" + FileName));
BufferedImage tag = new BufferedImage(28, 40, BufferedImage.TYPE_INT_RGB);
tag.getGraphics().drawImage(srcFile, 0, 0, 28, 40, null);
String FileName_tab = time + "_tab" + ext;//设置文件保存的名称
FileOutputStream out = new FileOutputStream(upDir + "/" + FileName_tab);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
JPEGEncodeParam jep = JPEGCodec.getDefaultJPEGEncodeParam(tag);
jep.setQuality(1f, true);
encoder.encode(tag, jep);
out.close();
StrReturn = "success";
}
}
pw.write(StrReturn);
}
Windows 10 是一款微软推出的经典操作系统,拥有硬件兼容性与多任务处理能力。它更偏向把系统状态查看和常用调节动作放在一起,适合需要持续观察和微调设备状态的场景。
极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。
















