C# - How To Resize An Image Whileing Saving In An Folder

Jan 6, 2010

i have an image file which is of (600* 800 size) or any size . now i need to convert them into an thubnail image size which is of size **(110*110)**

but if i reduce the size of an image i should not change the Quality of image. as once we reduce an image size the the Quality of the image is gone

is there any way without affecting the Quality of the image we can convert them into an thumbnail image[ is there any built in class for that in .net)

View 2 Replies


Similar Messages:

Web Forms :: Upload And Resize Image Before Saving It To Folder

Jul 30, 2012

I am trying to google search on how to resize image but i cant find the perfect one.. I want to resize 144 * 144..

below are my codes..

if (FileUpload1.HasFile) {
string strFilePath = Server.MapPath("~/Uploaded/") + "" + this.FileUpload1.FileName;
this.FileUpload1.SaveAs(strFilePath);

[CODE].....

View 1 Replies

Web Forms :: How To Display Image Preview Without Saving In Database Or Folder

Apr 28, 2013

i used a file upload control to upload file..after uploading i want to preview image without storing its path or storing in DB or solution explorrer folder.when i upload using fileupload control..path of image comes in fileupload control now i used a button so,that on button click image should be displayed in image control..

View 1 Replies

Web Forms :: Without Effecting Quality Reduce Image File Size While Resizing Saving To Folder

Aug 31, 2013

I have uploaded a .jpg image and resized as Small and Large thumbnail. The small image is (135 X 173) but after resizing the small thumbnail image file size is of 40.8 KB. And mostly all images (around 64) thumbnails having file size more than 40 KB. Due to which thumbnails taking lot of time to get display.

Is there a way through which we can reduce the image file size upto 8 to 12 kb, but without effecting image quaity??

Below is the source code that i am using for resizing an image:

If FileUpload1.HasFile Then
Dim stream As Stream = FileUpload1.PostedFile.InputStream
Dim x As String = IO.Path.GetExtension(FileUpload1.FileName).ToLower
If x = ".jpg" Or x = ".jpeg" Then
Dim image As New Bitmap(stream)

[Code] .....

View 1 Replies

Web Forms :: Resize Large Number Of Images In A Folder In C# Windows Application

Jul 30, 2013

How to resize large number of images in a folder  in c# windows application. I am using following code to resize images of my folders. If images are less than 1600 ( in number) then no problem but if images are more than 1600 then i am getting error. My code is given below:-

public static Image ResizeImage(string file, int width, int height, bool onlyResizeIfWider) {
using (Image image = Image.FromFile(file)) {
// Prevent using images internal thumbnail
image.RotateFlip(RotateFlipType.Rotate180FlipNone);
image.RotateFlip(RotateFlipType.Rotate180FlipNone);

[Code] ....

Thumbnail creation in ASP.Net: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI

View 1 Replies

Way To Resize Image With Code

Aug 20, 2010

I found this code on another site and it works great for resizing the image and keeping the quality. What I want to do at the end is check the height of the image and if it exceeds a certain number, just change the size of the image. Not resize it but just cut off part of the bottom to be a certain size.

Code:
Dim image As System.Drawing.Image = System.Drawing.Image.FromFile(src)
Dim srcWidth As Integer = image.Width
Dim srcHeight As Integer = image.Height
Dim thumbHeight As Integer = (srcHeight / srcWidth) * thumbWidth
Dim bmp As New Drawing.Bitmap(thumbWidth, thumbHeight)

View 2 Replies

Resize Image While Uploading

Aug 20, 2010

i am using file upload control for uploading images. in that iam checking the condition,if Image.Width > 250 || Image.Height > 400 then i am resizing the image. but it is giving the error "The SaveAs method is configured to require a rooted path, and the path 'ProductImages/roman_sandals.jpg' is not rooted."

ProductImages is folder where i am saving image. Can anyone find why this is giving error,my code is

string strBigServerPath = AppHardcodeValue.productImgPath;
string strFileName = "";
if (prodImg.HasFile)
{
strFileName = prodImg.PostedFile.FileName;
string uniqueNum = Convert.ToString(System.Guid.NewGuid());
string shortFileName = System.IO.Path.GetFileName(strFileName);
string Extension = System.IO.Path.GetExtension(prodImg.FileName);
string newFileName = shortFileName;
prodImg.SaveAs(Server.MapPath(strBigServerPath + newFileName));
using (System.Drawing.Image Img =
System.Drawing.Image.FromFile(Server.MapPath(strBigServerPath) + newFileName))
{
if (Img.Width > 250 || Img.Height > 400)
{...........................

View 1 Replies

Web Forms :: How To Resize Image

Mar 25, 2010

how to resize image in asp.net.

View 7 Replies

Resize Image While Display?

Nov 20, 2010

display images in small size (thumnails) and also resize the image size (kb) so the page will quickly upload images. i dont want the user will upload 2 version of images (large and small) and i dont want also to resize the image size while uploading the images to server. I want the user will upload the original images (320x480 px) and when the users will watch the gallery they will see small images (120x180px) with small kb size that will uploads fast.

View 5 Replies

Image Byte Resize As Thumbnail

Aug 12, 2010

I have a working application to save an image file to my sql database (Saves as "Original_Image" in the DB TBL_ImageGallery). I have a file limit on the upload of 1 MB. This also works great and the image is being saved beautifully. I found a bit of an issue. Being i am working on a network with 2 bonded T1 connections the streaming of images to my site, when tested internally, is effortless. I am not sure that this will be the same with a generic bandwidth. I want to store the original image size into the databse (already done) but also store a smaller sized (in bytes not actual size [Width, Height]) to my database in a "ThumbNail" column. This will allow the browser to only have to pass the "Thumbnail" sized image, obviously this needs to be much smaller than the original (ex: 1MB orignal I want to save as 12KB image in the thumbnail column), to the thumbnail img control in the user's interface.

I am not sure if this is possible or if there is a need of third party controls. I am interested in doing this as either a stored procedure or in the C# code on an event fire. There may be a better / other solution to this and if that is the case I am also interested

View 4 Replies

Web Forms :: Image Rotate And Resize?

May 17, 2010

how to make a toolbar to let user rotate or zoom in /out image

View 2 Replies

C# - Upload And Resize Image In Aspx?

Mar 11, 2011

I have a page which allows the user to upload pictures. The problem is that my old users can't resize the image themselves. I want to allow them to upload any size of image and then when the server gets it, it will create a small copy of this picture.

View 5 Replies

Upload And Resize Image In Thumb?

Jul 23, 2010

I try by this code to resize image and store it in thumb , uploade work , but thumb image cant work

this Code

this error

Compiler Error Message: CS0103: The name 'Component' does not exist in the current context

View 6 Replies

How To Resize Image And Upload It In Access Database

Jan 3, 2010

I want to know some codes on how can i resize the selected image in fileupload control and then Upload it in MS Access Database. I am using VB in coding. The only thing I know is that I can save it as an ole object in the database and it will be saved like a string. But I don't know some codes for this one.

View 5 Replies

Use Jquery To Resize A Div Containing A 100% Height/width Image?

Dec 1, 2010

I am trying to use jquery to resize a div containing a 100% height/width image in an asp.net page. I have some code that works fine as a simple html page. Here it is:

[code]....

Anybody know why it's not working and how to fix it?

View 3 Replies

Resize Image C# / Specific Format (widescreen 16:9)?

Feb 24, 2011

I am searching for a way to resize and crop images to a specific size in a fixed ratio like 16:9. So I have any image and any size and it should be resized and cropped in a ratio 16:9.

Just cropping is not very nice. I want that the image is resized more and if necessary maybe cropped. Or better: I want to reuse as much as possible from the original image but resize and crop it centered so I could use it in a fixed html div with a ration of 16:9.

View 3 Replies

Image Manipulation (resize - Merge) In ASP Environment

Feb 22, 2010

We are trying to find a suitable tool that allows image manipulation (resize, merge etc.) server-side. what the state-of-the-art solution are at the moment?

View 2 Replies

Web Forms :: Image Resize According To User Options?

Sep 14, 2010

i want to provide user to select images to upload, maximum images is 4.

the overall size is 1024px width and 500px height.

within this 4 or 3 or 2 images will have to fit.

if the user upload 4 images it has to calculate the overall width and height and resize the 4 images as equal width and height for each.

if the user upload 2 images it has to calculate the overall width & height and fits.

i want to do through code. iam using c# asp.net

View 1 Replies

Upload Image Then Resize With Fixed Width And Height?

Mar 19, 2010

which is better all user to crop the image with fixed width and height or let user upload the image then resize it with fixed width and height?

View 11 Replies

Web Forms :: Resize Image In Page To 700 Maximum Width

Jan 20, 2011

how to resize image, convert type it and I want to know resolution image upload if page content images how resize all image in this page to 700 max width asp.net 3.5 vb

View 3 Replies

Dynamically Image Resize From Web Directory And Display It - Not Thumbnail

Jun 23, 2010

i am facing a prblem about image resizing.. i know it is a common problem but the scinario is little different here. i have some image in my server image directory and also have their small 128 X 128 sized thumbnail..i show a page with those images like 'facebook photo album' and also linked another page to display them..when a picture is clicked it refferd to that page and that page loads the full sized original image along with picture comments bla bla..., the page width is fixed to 1024px, and the div's width is 800px max which contains the <asp:image..../>; that shows the full sized image. here the problem comes, when a original sized picture is greater that 800px then the remaining part of the picture is croped !! i know it will happen.. that is why i planned to show a thumbnail like pic which's size will be 800px max and link the page with a pop up java script page which will contain the full sized picture only. the problem is i can't resize the picture in a limit of 800px on fly.

View 8 Replies

Web Forms :: Resize Image Dynamically To Create Thumbnails

Sep 6, 2010

I have googled around for a solution and it seems that a lot of posts are dealing with these kind of things. Unfortunatley none of them seem to help me. I'm trying to resize an image dynamically to create a thumbnail. I'm basically loading a current JPEG into an image object and using the following commands to create a new image:

[Code]....

I put the image which I get from the code next to a manual re-size which was made in Photoshop. You cannot even compare between the two, the dynamic one looks so blurry when you compare it to the one made in Photoshop. Is there a way around this? I imagine Microsoft found a solution for this by now. Otherwise I will have to upload manually 4-5 different versions to every image on my website which doesn't sound right to me.

View 4 Replies

Web Forms :: How To Resize Large Size Image While Uploading

Aug 18, 2015

How to resize large size image like 3-4 mb of size to small size like 800px X 600px so that sie got reduce while uploading in asp.net ....

View 1 Replies

Web Forms :: Dynamically Resize Images Using Image Handler

Feb 26, 2012

How it is possible to dynamically resize an image using an image handler nd web.config file?like i want each image uploaded by user to be resized to a specific size(aspect ratio) before being upload to server from database i also want that the resized image must not loose its Aspect ratio.

View 1 Replies

Web Forms :: Image Resize While Maintaining Aspect Ratio

Feb 23, 2012

How can I resize image through web.config file?while using generic handlers to resize image to upload?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved