0

データベースから取得した jsp ページで画像のサイズを設定しようとしています。

画像は問題なく取得できますが、ページ全体を埋め尽くしています。

画像サイズの設定方法を知っている方

ありがとう

jspにあるコードは次のとおりです。

<%

Blob image = null;  
byte[] imgData = null;  
Connection con;
String url="jdbc:mysql://localhost:3306/comshopDatabase";
String uName="root";
String pwd="";
Class.forName("com.mysql.jdbc.Driver").newInstance();
    con=DriverManager.getConnection(url,uName,pwd);
    String sql="Select image from images WHERE id = '1' ";
    PreparedStatement stmt=con.prepareStatement(sql);

    ResultSet resultset=stmt.executeQuery();
while(resultset.next())
{

    Blob bl = resultset.getBlob("image");
    byte[] pict = bl.getBytes(1,(int)bl.length());
    response.setContentType("image/jpg");
    OutputStream o = response.getOutputStream();



%>
<TABLE BORDER="1">
<TR>
<TH>picture</TH>
</TR>
<TR>


<td>Image</td><td><%o.write(pict);%></td>
    <%o.flush();
    o.close();%>

<TD> <%= resultset.getString(2) %> </TD>
<TD><%= resultset.getString(3) %></TD>
</TR>
</TABLE>
<BR>
<%
o.flush();
o.close();
}
%>
4

1 に答える 1

0

画像スケーリング ライブラリを使用できます。jar はここからダウンロードできます。

以下に簡単な例を示します。

int width =1200, height = 900;
BufferedImage image = ImageIO.read(<sourceFile>);// You can use InputStream as well here, in place of source file
BufferedImage thumbnail = Scalr.resize(image, Scalr.Method.SPEED, Scalr.Mode.FIT_TO_WIDTH,
                                       width, height , Scalr.OP_ANTIALIAS);
ImageIO.write(thumbnail, "jpg", new File(<destination file>)); // You can use OutputStream as well in place of destination file
于 2013-04-26T13:18:44.003 に答える