CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of size
XML
<!--Place this under the <system.web> node-->
<httpRuntime executionTimeout="1200" maxRequestLength="30720" />
by Egli   July 25, 2011 @ 5:41pm
104 Views
no comments
 
C#
public static void ResizeImage()
{
    using (Bitmap src = new Bitmap(_ImgOriginal))
    {
        int destWidth = (int)(0.5 * src.Width);
        int destHeight = (int)(0.5 * src.Height);
        
        using (Bitmap dest = new Bitmap(destWidth, destHeight))
        using (Graphics gDest = Graphics.FromImage(dest))
        {
by Jon Sagara   January 14, 2010 @ 4:31pm
Tags: c#, gdi+, image, resize
325 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate