Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java GUI 设计  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 Re:缩放 SQL Server中Image字段的JPG图片时遇到的几个问题,特向大家请教 [Re:wgz_jz]
wgz_jz





发贴: 9
积分: 0
于 2004-10-24 13:27 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
问题已经解决,在 IE 中显示非常好,图片放大显示也没问题。

但仍有个比较困惑的问题:
这个问题是利用 IE 中的 JAVA 控制台来调试解决的,为什么在 JBuilderX 中却没有这些 Warning 信息呢?

改正后的部分程序代码如下:

private float displayRatio = 1.00F; //缩放比例
private Image scaledPicture; //缩放后的 JPG 图片
private ImageIcon iconPicture = new ImageIcon();

JLabel imgLocation = new JLabel();
JLabel imgPicture = new JLabel();
JPanel jPanelPicture = new JPanel();
JScrollPane jScrollPicture = new JScrollPane();

jScrollPicture.getViewport().add(jPanelPicture, null);
jPanelPicture.add(imgLocation, new XYConstraints(0, 0, 0, 0));
jPanelPicture.add(imgPicture, new XYConstraints(0, 0, 0, 0));

//queryOnePicture 的 SQL 为 "select 图 from 图表 where 图ID=:pictureID"
try {
InputStream inputImage = null;
try {
inputImage = queryOnePicture.getBinaryStream(1);
int lengthReaded=-1,positionCurrent=0;
do {
//从数据库中读取得原始 JPG 图片
private byte[] pictureBuffer = new byte[inputImage.available()+1];
lengthReaded = inputImage.read(pictureBuffer, positionCurrent, inputImage.vailable());
positionCurrent = positionCurrent + lengthReaded;
} while (lengthReaded != -1);
inputImage.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
catch (Exception e) {
e.printStackTrace();
}

iconPicture = new ImageIcon(pictureBuffer);
imgPicture.setVisible(false);
scaledPicture = iconPicture.getImage().getScaledInstance((int)(iconPicture.getIconWidth() * displayRatio),(int)(iconPicture.getIconHeight() * displayRatio),Image.SCALE_FAST);
imgPicture.setIcon(new ImageIcon(scaledPicture));
imgPicture.setVisible(true);




搞笑QQ图片

话题树型展开
人气 标题 作者 字数 发贴时间
4508 缩放 SQL Server中Image字段的JPG图片时遇到的几个问题,特向大家请教 wgz_jz 2174 2004-10-21 23:13
3500 Re:缩放 SQL Server中Image字段的JPG图片时遇到的几个问题,特向大家请教 wgz_jz 1609 2004-10-24 13:27
3667 Re:缩放 SQL Server中Image字段的JPG图片时遇到的几个问题,特向大家请教 kavinwang 12 2004-10-24 13:44

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923