[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.

Question
[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!

8.2

How To Set Resolution Of A Resized Image To 300 DPI Not The Montior's DPI in .NET GDI+?

Asked by endrec in .NET, Microsoft Visual Basic.Net, C# Programming Language

Tags: C#, VB.NET, GDI+, Set Resoltion, DPI, Image Resizing, GDI, .NET

I am having a problem with setting the resolution of a resized image to a DPI that is different than the monitor's DPI.  For some reason SetResolution(DPI, DPI) is not taking into account the resolution/DPI I pass into it...it's looking at the user's monitor's DPI (which is 96 DPI in most cases).

How do I resize an image and set the DPI to a value that I specify/want?

This is not working and according to a few Google seaches that I've done, I have not been able to find a solution that overcomes this GDI+ method issue.  Perhaps there is a different way to do that that I'm not aware of.

bmp.SetResolution(DPI, DPI)
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
Private Sub ResizeImage(ByVal OriginalFile As String, ByVal Width As Integer, ByVal Height As Integer, ByVal DPI As Integer, ByVal FileNamePrefix As String, ByVal DestinationFolder As String)
        Dim fileExt As String = cboOutputFileType.SelectedItem.ToString
        Dim strOutputType As System.Drawing.Imaging.ImageFormat = fncSaveImagesAs(cboOutputFileType.SelectedItem.ToString)
 
        Dim bmp As New Bitmap(OriginalFile)
        bmp.SetResolution(DPI, DPI)
 
        Dim resizedimg As New Bitmap(Width, Height)
        Dim g As Graphics = Graphics.FromImage(resizedimg)
        g.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic
 
        g.DrawImage(bmp, New Rectangle(0, 0, Width, Height), New Rectangle(0, 0, bmp.Width, _
bmp.Height), GraphicsUnit.Pixel)
        g.Dispose()
 
        'MsgBox(DestinationFolder & "\" & FileNamePrefix & Path.GetFileName(OriginalFile))
        If My.Computer.FileSystem.FileExists(DestinationFolder & "\" & FileNamePrefix & Path.GetFileNameWithoutExtension(OriginalFile) & fileExt) = True Then
            resizedimg.Save(DestinationFolder & "\" & FileNamePrefix & "2_" & Path.GetFileNameWithoutExtension(OriginalFile) & fileExt, strOutputType)
        Else
            resizedimg.Save(DestinationFolder & "\" & FileNamePrefix & Path.GetFileNameWithoutExtension(OriginalFile) & fileExt, strOutputType)
        End If
        bmp.Dispose()
        resizedimg.Dispose()
    End Sub
[+][-]08/28/09 10:40 AM, ID: 25209898Accepted Solution

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, Microsoft Visual Basic.Net, C# Programming Language
Tags: C#, VB.NET, GDI+, Set Resoltion, DPI, Image Resizing, GDI, .NET
Sign Up Now!
Solution Provided By: TheLearnedOne
Participating Experts: 1
Solution Grade: A
 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625