Java版颈椎自动矫正图 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-15
* @return */ public static BufferedImage rotateImage(final BufferedImage image) { int w = image.getWidth(); int h = image.getHeight(); BufferedImage img; Graphics2D graphics2d; (graphics2d = (img = new BufferedImage(w, h, image.getColorModel() .getTransparency ())).createGraphics()).drawImage(image, 0, 0, w, h, w, 0, 0, h, null); graphics2d.dispose(); return img; } /** * 傴廬夕?葎峺協叔業 * * @param degree * @return */ public static BufferedImage rotateImage(final BufferedImage image, final int angdeg, final boolean d) { int w = image.getWidth(); int h = image.getHeight(); int type = image.getColorModel().getTransparency (); BufferedImage img; Graphics2D graphics2d; (graphics2d = (img = new BufferedImage(w, h, type)).createGraphics()) .setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR); graphics2d.rotate(d ? -Math.toRadians(angdeg) : Math.toRadians(angdeg), w / 2, h / 2); graphics2d.drawImage(image, 0, 0, null); graphics2d.dispose(); return img; } final static public void setAlpha(final Graphics2D g, final double d) { AlphaComposite alphacomposite = AlphaComposite .getInstance(3, (float) d); g.setComposite(alphacomposite); } public static void main(String[] args) { java.awt.EventQueue.invokeLater(new Runnable() { public void run () { Frame frame = new Frame(); frame.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }); frame .add(new MessageImage( "耽爺中斤柴麻字\n音頁摂鷹、祥頁倒胎務、壅音隼祥頁才辻火恬況尸?卯倖込昆杏? 好似倖允徨利焚担議?壅椀扮祥亟亟Blog?廬廬Google?" + "悳岻24弌扮宣音蝕窮辻?宣音蝕利大?厮瓜追秘厘 忽娼舞押屏彜|||??海扮寂音試強?宸庄弋辛奕担鞭議阻?短一隈??泣一隈盾畳杏。" + "恷除嗤繁傍夕頭嬬嵶 粗庄弋押? |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 用BIRT实现高级图表:用基于Eclipse的BIRT创建具有专业外观的报告 - 编程入门网下一篇: 使用WebSphere Process Server提供的Business Space开发Mashup应用 - 编程入门网
关于Java版颈椎自动矫正图 - 编程入门网的所有评论