Save Image Preserving Resolution in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T03:01:43Z http://stackoverflow.com/feeds/question/1031402 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1031402/save-image-preserving-resolution-in-c 0 Save Image Preserving Resolution in C# mickyjtwin 2009-06-23T08:52:02Z 2009-07-29T21:02:36Z <p>I am trying to crop an image. I have found multiple ways to do this, however none are performing how I would like. Once the image is cropped, I am sending it to a PDF generator. If I send the normal jpg, it works fine, however if I crop the image, it does not come through to the PDF in the correct size. I think it might be to do with resolution.</p> <p>It looks fine in the html view, but when it published to PDF, the image comes out smaller than what is expected.</p> <p>Here is the cropping code I am using:</p> <pre><code> try { System.Drawing.Image image = System.Drawing.Image.FromFile(img); Bitmap bmp = new Bitmap(width, height, PixelFormat.Format24bppRgb); bmp.SetResolution(image.HorizontalResolution, image.VerticalResolution); Graphics gfx = Graphics.FromImage(bmp); gfx.SmoothingMode = SmoothingMode.AntiAlias; gfx.InterpolationMode = InterpolationMode.HighQualityBicubic; gfx.PixelOffsetMode = PixelOffsetMode.HighQuality; gfx.DrawImage(image, new Rectangle(0, 0, width, height), x, y, width, height, GraphicsUnit.Pixel); // Dispose to free up resources image.Dispose(); //bmp.Dispose(); gfx.Dispose(); return bmp; } catch (Exception ex) { //MessageBox.Show(ex.Message); return null; } </code></pre> <p>I have also tried this:</p> <pre><code>Bitmap temp = (Bitmap)System.Drawing.Image.FromFile(img); Bitmap bmap = (Bitmap)temp.Clone(); if (xPosition + width &gt; temp.Width) width = temp.Width - xPosition; if (yPosition + height &gt; temp.Height) height = temp.Height - yPosition; Rectangle rect = new Rectangle(xPosition, yPosition, width, height); temp = (Bitmap)bmap.Clone(rect, bmap.PixelFormat); </code></pre> <p>I am writing this out to the context stream:</p> <pre><code>Bitmap bm = Helper.CropImage(@"MyFileLocation", 0, 0, 300, 223); context.Response.ContentType = "image/jpg"; bm.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg); bm.Dispose(); </code></pre> <p>Interestingly, when I try a tiff image, and change the context type, I am receiving a generic GDI+ error. From research, this looks like a seek issue, but not sure how to resolve it either.</p> http://stackoverflow.com/questions/1031402/save-image-preserving-resolution-in-c/1031457#1031457 1 Answer by ChrisF for Save Image Preserving Resolution in C# ChrisF 2009-06-23T09:10:03Z 2009-06-23T09:10:03Z <p>When using a PDF you have to bear in mind that you are looking at the print resolution rather than the screen resolution.</p> <p>A 600 x 600 pixel image will occupy approximately half the width of the screen on a 1280 x 1024 resolution monitor.</p> <p>However if the print output is 200 dpi it will occupy 3 inches, but if it's set to 300 dpi it will only occupy 2 inches.</p> <p>I don't know enough about the PDF format to say what you need to do to get this to work, but my guess is that you need to work back from the physical size on the paper via the dpi of the output to get the size in pixels of the image:</p> <pre><code>pixel width = physical width * dpi </code></pre> http://stackoverflow.com/questions/1031402/save-image-preserving-resolution-in-c/1203019#1203019 0 Answer by Sprintstar for Save Image Preserving Resolution in C# Sprintstar 2009-07-29T21:02:36Z 2009-07-29T21:02:36Z <p>Regarding the GDI+ error issue, try saving to a memorystream first, then copying that to the Response.OutputStream. If a Tiff is anything like a PNG, the stream does indeed need to be seekable.</p>