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


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

How To Enlarge An Image (any Type) From C# Without Losing Quality

Jan 6, 2010

app would be in asp.net and c# (4.0)

View 3 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

C# - Image Resizing On The Fly?

Jan 7, 2011

For simplicity lets say that I have a web page that needs to display thumbnails of images. The images locations are stored in a database(the images are stored on Amazon S3). Is it possible to have my web server scale down the large image before it is delivered to the client? This way I don't have to store thumbnails of every image and the client can download a smaller file.

View 2 Replies

ITextSharp Renders Image With Poor Quality In PDF

Mar 26, 2010

I'm using iTextSharp to print a PDF document. Everything goes ok until I have to print the company logo in it.

First I noticed that the logo had poor quality, but after testing with several images, I realize that was the iTextSharp rendering it poorly.The test I did to say this was to print the PDF using my code and then edit the document with Acrobat 8.0 and I drew an image. Then printed the two documents and saw the noticeable difference.My question is that if anyone know if this can be due to a scaling problem where I'm failing to tell iTextSharp how it must render the image or is an iTextSharp limitation.

The code to render the image is the following:

[Code]....

The method ResizeImage() do the resizing of the width and height respecting the aspect ratio and keeping in a max width and a max height limits.

View 2 Replies

Image Resizing From A Class?

Sep 9, 2014

I found some code that resizes an uploaded image ( stream ) to a pre-determined size. Using this code, it works perfectly..

Code:
' make sure we have a file .
If FileUpload3.HasFile Then
Dim name As String = FileUpload3.PostedFile.FileName
Dim Justname As String = Path.GetFileName(name)
Dim length As Integer = FileUpload3.PostedFile.ContentLength

[Code] ....

What I'd like to do is move this code into a Class so I can call it from other pages, so I created a class and added this code...

Code:
Imports Microsoft.VisualBasic
Imports System.IO
Imports System
Imports System.Xml
Imports System.Xml.Xsl

[Code] ....

As you can see, I'm trying to pass in a stream and defined width, and I want it to pass back the image ( if the size if greater than what I expected.

I'm trying to call the class like so.

Code:
' make sure we have a file and that we have an ID to set it to.
If FileUpload3.HasFile Then
Dim name As String = FileUpload3.PostedFile.FileName
Dim Justname As String = Path.GetFileName(name)
Dim length As Integer = FileUpload3.PostedFile.ContentLength

[Code] ....

Don't worry about the cc.imgStr this is just the path to my class which is defined futher up.

The Error I get is "Value of type system.io.stream, cannot be converted to ' 1 dimensional array of byte' "...

View 1 Replies

C# - Create Better Quality Higher Resolution Thumbnail Image

Sep 28, 2010

I am looking c# code which creates better quality higher resolution thumbnail image. i am having an image of dimension(600 * 900) and i need to create thumbnail of dimension (100 * 100) with high quality.

View 3 Replies

Image Editor To Allow Cropping And Resizing?

Feb 11, 2011

My requirement is when ever user upload an image and want to resize an image and then save that image into the database

View 7 Replies

JQuery :: Resizing Image After Jcrop?

Sep 24, 2010

I'm using JCrop, by using Mikes great article at: http://www.mikesdotnetting.com/Article/95/Upload-and-Crop-Images-with-jQuery-JCrop-and-ASP.NET

There are two things I haven't been able to figure out how to do though:

(1) How do I check if the uploaded image is big enough? (i.e. how do I determine width of image is > 200px")

(2) How do I resize the cropped image to 200px in width.

View 6 Replies

Can Loading And Resizing An Uploaded Image Be Dangerous

Oct 29, 2010

I have ASP.NET form with an upload control for users to post an image. On the server I load that image (using the Bitmap class) and resize it. Is there any danger in doing that when users upload malicious or affected files or will the code just throw an exception at some point and stop the whole process?

View 2 Replies

Web Forms :: Checking For And Resizing An Image Before Downloading With VB.net?

Jul 17, 2010

In trying to upload images to a server, I often get the following error "Maximum request length exceeded.".

I have tried to check for the size in codebehind but it appears that the error comes from the service provider or something else because I never even get to debug it since the error appears even before the Page_Init Subroutine in codebehind.

What is the best method of checking for the image size and then resizing it dymamically to a maximum file size as well as length and width size.

View 1 Replies

Data Controls :: Resizing Image On Fly In DataList

Aug 12, 2012

I want to resize image on fly in my Product Datalist. I am retrieving image from folder but it includes images with diffrent size. 

Some images looks clear but some pixelet. How to resolve this.

Datalist aspx code:

<asp:DataList ID="ItemList" runat="server" RepeatColumns="4"
BorderWidth="0px" BorderStyle="None" onitemcommand="ItemList_ItemCommand" >
<ItemTemplate>
<div class="sectionHolder">
<div class="pinStick">

[Code] ....

View 1 Replies

Web Forms :: Preventing Background Image From Stretching / Resizing?

Jun 10, 2010

I have a 40x1600 image that I use for bg and I do repeat-x in my CSS, like such:

body

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

Forms Data Controls :: Resizing Image With System.drawing Object?

Mar 11, 2011

I have a photo on my server image1.jpg in high resolution, and I need it to be resized everytime it is send to client depending with dimension I put but should not make extra file on disk.

I used aspjpeg for this in past but now I need something that can be used on servers that do not have aspjpeg instaled.

View 6 Replies

Web Forms :: Convert To Thumbnail By Dynamically Resizing Picture Image And Display It In GridView?

Jun 17, 2012

I use these code for resizing image

behind code

public string img_resize(string picname, int maxHeight, int maxWidth)
{
System.Drawing.Image currentImage = System.Drawing.Image.FromFile(server.mappath("mypics") + picname);
double imgHeight = 0;
double imgWidth = 0;
imgHeight = currentImage.Height;
imgWidth = currentImage.Width;

[code].....

but in this line occur error 

<ItemTemplate> <%#img_resize(Eval("my_img"),100, 80)%> </ItemTemplate>

error: Parser Error

Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: The server tag is not well formed.

what should i do ?

View 1 Replies

Web Forms :: Display Image In Image Conrtrol When User Select Image From Selection_Dialogbox

Sep 27, 2010

I want to achive on functionallity like below.

I want to Dispaly image after image selection.so Users can see image at that moment.

View 5 Replies

AJAX :: Uploading Image With AsynFileUpload And Changing Image Url Of An Image Control?

Jun 7, 2010

I Used AsyncFileUpload(one of Ajac Control Toolkit Controls) to Uploading User's Image. this works well. But i want to change the image url of an image contorl to uploaded image url. how can i perform that? I put Image control in a Update Panel:

[Code]....

in C# code I wrote these:

[Code]....

But it does not work. Image is like Previous. Note that ImageOperations.ResizeFromStream() method resizes and saves the image to a specefic folder. actually I should trigger a Postback to Update the Update Panel but How to do that. I usedUpdatePanelNew.Update(); but it does not work!

View 1 Replies

Web Forms :: Image Display / Preview Image Whenever Browse An Image Beside It In An Imagecontrol?

Feb 1, 2010

I have a fileupload control in a contentplaceholder in a masterpage. I have to preview the image whenever I browse an image beside it in an imagecontrol.

My application is running on a different server .So I can't give the filepath of my local system.

Also I don't want to store the image in any location and i'm not supposed to use any session variable to pass it to generic handler.

View 3 Replies

Web Forms :: To Set A Default Image For Image Control , When There Is No Image Availble?

Jan 15, 2011

I am trying to put a default image in an Image control in asp.net and it should show that particular image on the page when no other image is assigned or no image available in Database.

View 1 Replies

Web Forms :: How To Display Image In Image Component After Uploading An Image

Mar 22, 2011

in my aspx page i have a file upload control and one image component...i want to display the image uploaded in the image component..

View 4 Replies

Web Forms :: Display Image In Image Control From Image Path

Oct 1, 2010

I know how to display an image in gridview from image path in database. Now, I want to display an image in an asp.net image control from image path in database. Can anyone point me to a tutorial? I haven't been able to find one that explains how to do it when I don't know what the image path will be. The images are in the root folder.

View 35 Replies

Dynamically Generate Image On Image Map Or Image Button?

Sep 30, 2010

Here is this thing which to me looks possible, but when I searched over the net I couldnt find anything.

I want to create a page where I can upload an image using any upload function and then display it. Now after diplaying it I want to select the hotspots for an image map. The coordinates of image map values are stored in a database.

Basically I want that to create image maps and hotspots I dont use any offline software, this work is successfully completed and working perfectly, but i want generate one identification where i click the hot spots position in image or CSS file Generate for user identifications, So how can i solve this problem.

I hope You are clear in that what I am looking for.

View 1 Replies

Web Forms :: Display Thumbnail Image In DataList Image Gallery And OnClick Display Original Image

Oct 12, 2012

I need to develop image gallery

Image saved in Folder called Images and image Name , Description saved in Database Table Images.

On Deafault.aspx

Thubnail images should display with out any change in Quality i.e by DataList Control

On Click of Thubnail images Fullview of image with width and height same as image width and height   
Next, Previous, Close Buttons on Popup window

View 1 Replies







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