posts - 38,  comments - 22,  trackbacks - 0

          /**
          ???? * 將某個組件上的圖形或組件另存為文件
          ???? * @param comp
          ???? * @param filename
          ???? * @return
          ???? */
          ??? public static boolean saveToJPEG(Component comp) {
          ??????? boolean result = true;
          ??????? try {
          ??????????? int w = comp.getWidth();
          ??????????? int h = comp.getHeight();
          ??????????? BufferedImage
          ??????????????? image = (BufferedImage) comp.createImage(w, h);
          ??????????? Graphics2D g2 = image.createGraphics();
          ??????????? comp.print(g2);

          ??????????? String filename = LocalAccess.getSaveFileName(comp,"JavaComponent.jpg");
          ??????????? if(filename==null)return false;
          ??????????? BufferedOutputStream bos =
          ??????????????? new BufferedOutputStream(new FileOutputStream(filename));
          ??????????? com.sun.image.codec.jpeg.JPEGImageEncoder encoder = com.sun.image.codec.jpeg.JPEGCodec.createJPEGEncoder(bos);
          ??????????? com.sun.image.codec.jpeg.JPEGEncodeParam jep = encoder.getDefaultJPEGEncodeParam(image);
          ??????????? jep.setQuality(1.0f, false);
          ??????????? encoder.setJPEGEncodeParam(jep);
          ??????????? encoder.encode(image);
          ??????????? bos.close();
          ??????? }
          ??????? catch (Exception e) {
          ??????????? result = false;
          ??????????? e.printStackTrace();
          ??????? }
          ??????? return result;
          ??? }

          posted on 2007-01-15 13:51 aaabbb 閱讀(261) 評論(0)  編輯  收藏 所屬分類: Swing
          主站蜘蛛池模板: 海口市| 阜康市| 绥芬河市| 红桥区| 绥阳县| 历史| 林口县| 卢氏县| 汉阴县| 保亭| 托克逊县| 邹平县| 甘德县| 永平县| 湖南省| 宁都县| 建宁县| 久治县| 萨嘎县| 三明市| 巴马| 江津市| 高碑店市| 商南县| 溧水县| 修文县| 嵊州市| 中方县| 连山| 克什克腾旗| 宽甸| 仁寿县| 灵台县| 漾濞| 昌平区| 左权县| 休宁县| 富阳市| 新沂市| 保定市| 区。|