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


Similar Messages:

Resizing Image In Losing Quality?

Sep 28, 2010

I have a script which resizes images, I did not write this script, nor do I know any ASP.NET, but I have been assigned the task of fixing an issue with it!

The problem is, the resulting image from the resize appears to be of less quality than the upload, even if the file uploaded is already set to the correct size.

Uploaded image - [URL]
Resized image - [URL]

The script that is doing the resizing is as follows, how to correct the issue?

[Code]....

View 2 Replies

C# - Resizing An Image Without Losing The Image Quality?

Feb 23, 2010

I am developing an ASP.NET 3.5 web application in which I am allowing my users to upload either jpeg,gif,bmp or png images. If the uploaded image dimensions are greater then 103 x 32 the I want to resize the uploaded image to 103 x 32. I have read some blog posts and articles, and have also tried some of the code samples but nothing seems to work right.

View 4 Replies

When Load Webpage Image's File Size Stays Same Rather Then Reduce

Aug 4, 2010

when I load the web page the image's file size stays the same rather then reduce.

[Code]....

View 54 Replies

Web Forms :: Reduce Image Size And Dimensions Using C#

May 30, 2012

I have many image in my page my images size are between 100 -200kb I want redeuce my images size to 4-5Kb ... How I can do it? is there any control to do it?

View 1 Replies

Web Forms :: Reduce Image Size While Fetching From Database

Feb 25, 2016

I have stored images in folder each images is more than 700kb so datalist binding process became slow.so it is possible that while loading record and corresponding images from folders Can I reduce the image size or compress images so that record fetching become faster.In database i m stroing image path and image is stored in directory.

View 1 Replies

Web Forms :: Reduce Picture Quality And Save It

Mar 18, 2013

I am uploading images in c# windows application. I am uploading the images folder wise. In one folder there are 200 to 3000 images. My one images size is about 3.10 MB to 6.2 MB. Its dimensions are 3008 x 1960, 1960 , 4000 x 2600. 6000 x 4000 . while uploading i am reducing the size of image to 400 x 266 or 266 x 400 depending on the height and width of image. but still my image size is about 227 KB. Now i want to reduce the image resolution to decrease the image size.

My code is given below:

private void btnUpload_Click(object sender, EventArgs e)
{
getDestinationPath();
string ik = DestinationPath;
string ik2 = DestinationPath2;
string lastFolderName = Path.GetFileName(ik);

[Code] .....

View 1 Replies

Reduce The Size of The Image In Code Behind before uploading?

Mar 18, 2011

I am using a sql server 2008 database and I am uploading images to the server using an asp.net webapplication. I have an image column that I use to store the images. I have chosen the database to store the image and not a folder on the server, because the database table will contain only very few rows. maybe close to 10 or 15 rows.

My question is, Do I have to reduce the size (dimensions and quality affecting size on disc in kbs) of the image in code behind before uploading it to the database or do I keep it as is. The total upload size permitted is 200kb. I am thinking that when the image size (size in kbs) is small my webapplication performance will not be affected when displaying them from the database.

View 6 Replies

How To Reduce The Quality Of The Picture So It Is Less Than 10 KB

Jan 15, 2011

I am using asyncfileupload ajax control and can successfully upload and save picture on server.I need to do the following and not sure how:When user is in process of uploading, I only want them to see *.jpg *.gif and *.bmp files
Once the user uploads their picture, how do I reduce the quality of the picture so it is less than 10 KB?

View 1 Replies

Web Forms :: How To Set Calendar Caption Font Size Without Effecting The Rest Of The Control

Oct 24, 2010

Using the Calendar control, is it possible to set a custom font style and size independent of the rest of the control?

I presently use the following in my page;

[Code]....

How can I, if possible, set the Caption font to a new font without effecting the rest of the control?

View 2 Replies

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 :: Compress Video Size Before Uploading Without Losing Quality

Feb 26, 2014

I am trying to upload large videos(more than 1GB) to youtube from webpage. But youtube is allowing me to upload max 8MB videos. So I want to reduce the size of the video and then upload the reduced video  to youtube. So, how to reduce the video size.

View 1 Replies

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

Web Forms :: How To Reduce Size Of Barcode Font In C#

Sep 30, 2012

i want to reduse the size of barcode image in this code . i tried to reduce but its cutting the number ...  how can i reduce the size of this barcode image

string barCode = TextBox2.Text;
System.Web.UI.WebControls.Image imgBarCode = new System.Web.UI.WebControls.Image();
using (Bitmap bitMap = new Bitmap(barCode.Length * 40, 80))

[Code]....

View 1 Replies

Web Forms :: Check Image File Size And Dimensions (Height And Width) Before Image Upload

Oct 18, 2013

How to upload images with some conditions

Like

size not gretr than 50 kb

with = 110px, height 140 px

etc..

View 1 Replies

Saving A File Into Special Folder When File Is Downloaded On Users Machine

Jul 2, 2012

I need to save a file into special folder.

if (TextBox1.Text == s)
{ MessageBoxResult mbr = MessageBox.Show(this, "Do you want to save file?", "saved", MessageBoxButton.YesNoCancel); // if (mbr == MessageBoxResult.Yes) // { // //string path = string.Empty; // string path; // path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "abcFile"; // if (!Directory.Exists(path)) // Directory.CreateDirectory(path); // }

It creates a folder abc if it doen't exist, i need to save s where s is a textfile.

View 1 Replies

Resizing Images With .NET And Saving To Database?

Mar 18, 2010

I need to take an uploaded image, resize it, and save it to the database. Simple enough, except I don't have access to save any temp files to the server. I'm taking the image, resizing it as a Bitmap, and need to save it to a database field as the original image type (JPG for example). How can I get the FileBytes() like this, so I can save it to the database?Before I was using ImageUpload.FileBytes() but now that I'm resizing I'm dealing with Images and Bitmaps instead of FileUploads and can't seem find anything that will give me the bytes.

View 3 Replies

Web Forms :: Optimize ScriptResource.axd And WebResource.axd To Reduce Page Size?

Dec 14, 2010

In my web application, I have used AJAX Toolkit and my .net version is 3.5. When I run the application and save the page, so many ScriptResource.axd and WebResource.axd generate which makes the file size 200 to 300 KB more big. After doing the same procedures mentioned in the above link, it was working fine as all ScriptResource.axd and WebResource.axd file is removed.

But when I go from one page to another page using on click, then Object Expected Error comes and when I debug it,I found one ScriptResource.axd file containing query string like .axd?d=-bA.like this and Request. GetResponse cannot find the file and it gives 404 errror (File Not Found).

View 3 Replies

Saving A Text File To The Application Folder?

Jun 22, 2010

i have build an MSI file for my project. Now what i need i am having some text boxes on my form. If i click on save i would like to save it as text file to the application installed folder.

View 3 Replies

How To Reduce Box Size

Aug 13, 2010

I have the line where is goes "Hide Suggested budget with tolerance %' then the box is too large. It is almost fine, you can see here

[URL]

The box holding the '5' for the Tolerance percent is too large. How can I reduce this?

the code for all this area is here:

[URL]

View 2 Replies

Reduce PDF Size On Upload To Database?

Oct 25, 2010

I have an application that allows users to upload a pdf. I am saving the PDF into SQL (I know already this is not the best practice, but it was not my decision) and I need to some how duing this upload process reduce the size of the pdf. Is there a way to get the uploaded file, reduce its size, then stream it to SQL?

View 12 Replies

Typical File Size Of Temporary Files, Folder?

Jul 23, 2010

I know this is a bit like how long is a piece of string question, but I'm wondering how big some peoples ASP.NET Temporary Files folder, gets. I wish to move this folder to a RAM DISK so I'm trying to see how big this should be set, to.

eg. <compilation tempDirectory="R:ASP.Net Temporary Folder" debug="false">

This is only for my DEVELOPMENT Machine (to help speed up compiling -> temp crap goes to ram instead of the Disk).

Is 256MB big enough? What about file uploading? where do those files (temporarily) go?

View 1 Replies

Controls :: GridView Export To PDF - Reduce Font Size

Apr 4, 2013

I am using iTextSharp to convert my html page to pdf, It works perfectly.

But the size of the font is very big.

I am using the below code,

Response.ClearHeaders()
Response.ContentType = "application/pdf"
Response.AddHeader("content-disposition", String.Format("attachment; filename={0}.pdf", Me.psn.Text))
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Dim sw As New StringWriter()

[Code] ....

View 1 Replies

Web Forms :: Display Image Preview Without Saving File Physically After Upload

Apr 14, 2013

How to display image in Image control after upload on the server asp.net C#Without pressing any key OR UPLOAD BUTTON

View 1 Replies







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