resize dynamic image in jsp
Sir,
I am saving the images in mysql database with Blob. An I am retrieving the images with this code:-
<%@ page import="java.sql.*" %>
<%@ page import="java.io.*" %>
<%@ page import="servlets.MySqlConnect" %>
<%
MySqlConnect sc = new MySqlConnect();
Connection con = sc.getConnection();
InputStream sImage;
ServletOutputStream o = response.getOutputStream();
ResultSet rs =null;
Blob image=null;
PreparedStatement psmnt =null;
try{
psmnt = con.prepareStatement("SELECT img FROM Test WHERE img_id = ?");
psmnt.setString(1, "ss");
rs = psmnt.executeQuery();
if (rs.next()) {
image = rs.getBlob(1);
} else {
response.setContentType("text/html");
out.println("<html><head><title>Display Blob Example</title></head>");
out.println("<body><h4><font color='red'>image not found for given id</font></h4></body></html>");
return;
}
response.setContentType("image/gif");
InputStream in = image.getBinaryStream();
int length = (int) image.length();
int bufferSize = 1024;
byte[] buffer = new byte[bufferSize];
while ((length = in.read(buffer)) != -1) {
o.write(buffer, 0, length);
}
in.close();
o.flush();
}
catch(Exception ex){
out.println("error :"+ex);
}
finally {
// close all the connections.
rs.close();
psmnt.close();
con.close();
}
%>
I am getting my image with this code but all I need that I want to resize that image automatically according to given dimension after retrieving on web page.
If you will help me, I will be very grateful to you.
Thanking You,
Shailander Sharma
View Answers
Related Tutorials/Questions & Answers:
resize dynamic image in jsp - JSP-Servletresize dynamic image in jsp Sir,
I am saving the images in mysql...:-
I am getting my
image with this code but all I need that I want to
resize that
image automatically according to given dimension after retrieving on web page
Resize image stored in databaseResize image stored in database hi,
Can any one please send code for
how to
resize image stored in database in blob datatype in
jsp,
i want to
resize it to 140(w)*160(h)
please help me
Advertisements
Image Resize in FlexImage Resize in Flex Hi.......
I am going to add images into a tag. How will it
resize itself?
Please tell me about that....
Thanks Ans: The
image resize is the part of laying out of your application. you
need dynamic image exampleneed
dynamic image example struts 2 img example for a
dynamic image.... I am creating a profile for a user and the user is uploading his
image which I... this with the
image. I need to see an example of how to do this for an
image. I am
PHP GD Image Resize) ;
$
image = imagecreatefromjpeg($file)
;
imagecopyresampled($tn,
$
image, 0...($tn,
$save, 100);
echo("
Image
created and saved successfully."
dynamic pagination in jsp - JSP-Servletdynamic pagination in jsp i am unable to display the data in multiple pages. I am gettting data from the database from the javaBeans to
jsp by vectors... but i am unable to displaying them in
jsp 15 records per page
Dynamic table in jspDynamic table in jsp Hi.....
I have a java file to read excel file... to show all values of excel file on
jsp page in a table format.
All elements are displaying on
jsp page but in vertical line.
How can i change them in table
Dynamic Line draw in JSpDynamic Line draw in JSp In my application. I have one source selected from listbox and multiple targets selected from checkboxes. After submitting... multiple target.
And each line should have dynamically link of other
jsp page
dynamic display - JSP-Servletdynamic display hi,
i want to display
dynamic values in drop drown box in a
jsp page.these values are in the form of arraylist's object which... javax.servlet.http.*;
public class DataServlet extends HttpServlet{
String page="/
jsp JSP: Dynamic Linking - JSP-ServletJSP:
Dynamic Linking Hi
I am fetching data as a search result from database and displaying it in a table(id and name)using while(rs.next()){...}.I... inside your result set loop to provide them a
dynamic link.
JSP Code
Dynamic link in JSPDynamic link in JSP Hii everyone...I have stuck from last 2 days...
jsp page which contains some checkboxes, so from that checkboxes , i have..._TO_REPLACE_1
So, I have stuck with this LINK ...How to generate this
dynamic link n all
JSP:Dynamic Linking - JSP-ServletJSP:
Dynamic Linking Hi
This is extension to my previous question:
" I am fetching data as a search result from database and displaying it in a table(id and name)using while(rs.next()){...}.I want to provide hyper link
Image retrieval in Servlet and JSPImage retrieval in Servlet and JSP Sir, How should i give
dynamic paths to
image in
JSP.
EX :
`<img src="C:\Users\Public\Pictures\Sample... to retrieve the
image with name 001.jpg. I have no idea as to how should i
image in jsp - JSP-Servletimage in jsp i m storing path of
image in my database.. but when i m trying to display
image using that path
image is not getting... i m storing path like c:\
image\a.jpg ... and i m using tag... how to get
display image on jsp.
image is like link. on
jsp . i am trieving that
image path by which
image is downloading on
jsp.
show i can open it. but i want to display that
image on
jsp...display
image on jsp how to display
image from database which path
Jsp Image prob - JSP-ServletJsp Image prob I m working on a project i which i have to upload a
image in
jsp to database and then on next page i will show that
image from database so what should i do as i have done first phase
Image preview - JSP-ServletImage preview How to show the preview of the
image when we select the
image through browse button in
JSP page before storing it in the application... select the
image using the file type button i want to dynamically show
Objective C resize UIImageObjective C
resize UIImage i just want to
resize the
image on the touch detection. That means if a user double clicks on the UIImage it must
resize the
image How to retrieve blob image from database in JSP?How to retrieve blob
image from database in
JSP? Hello,
JSP is used for
dynamic web applications. In my
dynamic web application I want to display the blog
image from database.
How to retrieve blob
image from database in
JSP image display - JSP-Servletimage display how to display
image that store in mysql database... column have BLOB datatype.... Hi Friend,
Please visit the following link:
http://www.roseindia.net/
jsp/retrieve-image.shtml
Thanks
insert image - JSP-Servletinsert image hi friends i am mahesh i am trying to insert
image into oracle database
using
JSP but i am not geting so please friends send me the code for inserting
image into database using
JSP Hi Friend,
Try
display image using jspdisplay
image using jsp display
image using
jsp and phonegap on emulator of eclipse
Here is a simple
jsp code that displays an
image on browser.
<%@ page import="java.io.*" %>
<%@page contentType="
image/gif
Image upload file - JSP-ServletImage upload file I want a code for
image upload
jsp or servlet. Hi friend,
For
image upload
jsp or servlet visit to :
http://www.roseindia.net/
jsp/file_upload/employee_upload_profile_image.shtml
http
Dynamic table data to Excel in JSP Dynamic table data to Excel in
JSP Iam trying to export
dynamic data to excel . But it is displaying only static data .Kindly help
viewtrial.jsp
<%@page import="java.sql.*"%>
function des_setEnable
Image - JSP-ServletImage Hi Experts, I need your help (Source Code)on how I can send and retrieve
image to/from Microsoft Sql 2000 database (NOT MYSQL) using java servlet or
Jsp and html form. Please the output should be displayed in an html form
JSP:select image for db and display in image tagJSP:select
image for db and display in
image tag Hi, i am new to this forum.
My query is that, i am trying to display
image in
image tag but i am...();
response.setContentType("
image/jpg");
response.getOutputStream().write(rb,0,len
upload image using JSP Hibernateupload
image using
JSP Hibernate sir,
I want to take
image from user and save to database(MYSQL) using Hibernate and
JSP
Thanks in advance
Uploading image using jspUploading
image using jsp how to upload
image using
jsp. Already i tried, But that
image file does not read.
It returns only -1 without reading...; Here is a
jsp code that upload
image and display it on the browser.
1
JSP:select image for db and display in image tagJSP:select
image for db and display in
image tag Hi, i am new to this forum.
My query is that, i am trying to display
image in tag but i am...();
response.setContentType("
image/jpg");
response.getOutputStream().write(rb,0,len
JSP:select image for db and display in image tagJSP:select
image for db and display in
image tag Hi, i am new to this forum.
My query is that, i am trying to display
image in tag but i am...();
response.setContentType("
image/jpg");
response.getOutputStream().write(rb,0,len
Jsp Image DisplayJsp Image Display Hi,i need to display
image in a Box like in profile photo,when i click on the browse button,file gets open and the selected
image... to save it in a database....Kindly post
JSP codes..Its Urgent,
I m very thankful t