[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

01/25/2009 at 07:30PM PST, ID: 24082534
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.2

asp.net c# image resize and recrop problem

Asked by applefruit in .NET Framework 1.x, .NET Framework 2.x, Programming for ASP.NET

Tags: asp.net, c#

Hi,

I have a ImageCrop method which will resize and recrop the image to a specific size. However when the image has been resize and recrop, there is a thin black line on the top of the image. I think its something got to do in the ImageCrop method, which is cause this problem, Could anyone advice me on what should i do, so that the thin black line will not be there? Thanks.

I have attached a screenshot of the problem. So that you can have a better understanding.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
//SAVING THE LARGE IMAGE
photoL = "photo.L." + args.FileGuid + "." + args.FileName;
args.CopyTo(Path.Combine(SampleUtil.GetFileDirectory(), photoL));
 
System.Drawing.Image imgSaved = System.Drawing.Image.FromFile(Path.Combine(SampleUtil.GetFileDirectory(), photoL));
System.Drawing.Image imgCroped;
 
imgCroped = ImageCrop(imgSaved, 100, 100, AnchorPosition.Top);
photoM = "photo.M." + imgCroped.GetHashCode() + "." + args.FileName;
imgCroped.Save(Server.MapPath("Photo/" + photoM), ImageFormat.Jpeg);
 
imgCroped = ImageCrop(imgSaved, 60, 60, AnchorPosition.Top);
photoS = "photo.S." + imgCroped.GetHashCode() + "." + args.FileName;
imgCroped.Save(Server.MapPath("Photo/" + photoS), ImageFormat.Jpeg);
imgCroped.Dispose();
 
 
protected static System.Drawing.Image ImageCrop(
    System.Drawing.Image imgPhoto, int Width, int Height,
    AnchorPosition Anchor)
    {
 
        int sourceWidth = imgPhoto.Width;
        int sourceHeight = imgPhoto.Height;
        int sourceX = 0;
        int sourceY = 0;
        int destX = 0;
        int destY = 0;
 
        float nPercent = 0;
        float nPercentW = 0;
        float nPercentH = 0;
 
        nPercentW = ((float)Width / (float)sourceWidth);
        nPercentH = ((float)Height / (float)sourceHeight);
 
        if (nPercentH < nPercentW)
        {
            nPercent = nPercentW;
            switch (Anchor)
            {
                case AnchorPosition.Top:
                    destY = 0;
                    break;
                case AnchorPosition.Bottom:
                    destY = (int)(Height - (sourceHeight * nPercent));
                    break;
                default:
                    destY = (int)((Height - (sourceHeight * nPercent)) / 2);
                    break;
            }
        }
        else
        {
            nPercent = nPercentH;
            switch (Anchor)
            {
                case AnchorPosition.Left:
                    destX = 0;
                    break;
                case AnchorPosition.Right:
                    destX = (int)(Width - (sourceWidth * nPercent));
                    break;
                default:
                    destX = (int)((Width - (sourceWidth * nPercent)) / 2);
                    break;
            }
 
        }
 
        int destWidth = (int)(sourceWidth * nPercent);
        int destHeight = (int)(sourceHeight * nPercent);
 
        Bitmap bmPhoto = new Bitmap(Width, Height,
            PixelFormat.Format24bppRgb);
        bmPhoto.SetResolution(imgPhoto.HorizontalResolution,
            imgPhoto.VerticalResolution);
 
        Graphics grPhoto = Graphics.FromImage(bmPhoto);
        grPhoto.InterpolationMode = InterpolationMode.HighQualityBicubic;
 
        grPhoto.DrawImage(imgPhoto,
            new Rectangle(destX, destY, destWidth, destHeight),
            new Rectangle(sourceX, sourceY, sourceWidth, sourceHeight),
            GraphicsUnit.Pixel);
 
        grPhoto.Dispose();
        return bmPhoto;
    }
Attachments:
 
thin black line above resize and recrop image
thin black line above resize and recrop image
 
[+][-]01/25/09 08:49 PM, ID: 23464197

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/25/09 08:54 PM, ID: 23464211

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/25/09 09:04 PM, ID: 23464237

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: .NET Framework 1.x, .NET Framework 2.x, Programming for ASP.NET
Tags: asp.net, c#
Sign Up Now!
Solution Provided By: dusion
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20090824-EE-VQP-74 - Hierarchy / EE_QW_EXPERT_20070906