1
A
回答
1
我用這個方法在應用程序中我提出來調整圖像。它使用'System.Drawing.2D'
public static Bitmap ResizeImage(Image image, int width, int height)
{
var destRect = new Rectangle(0, 0, width, height);
var destImage = new Bitmap(width, height);
destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution);
using (var graphics = Graphics.FromImage(destImage))
{
graphics.CompositingMode = CompositingMode.SourceCopy;
graphics.CompositingQuality = CompositingQuality.HighQuality;
graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
graphics.SmoothingMode = SmoothingMode.HighQuality;
graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;
using (var wrapMode = new ImageAttributes())
{
wrapMode.SetWrapMode(WrapMode.TileFlipXY);
graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, wrapMode);
}
}
return destImage;
}
相關問題
- 1. css html百分比調整圖像
- 2. 基於百分比值調整圖像大小
- 3. 使用百分比值調整圖像大小,同時更改縱橫比
- 4. JQuery調整邊距 - 基於像素調整百分比寬度
- 5. 使用百分比屬性調整圖像大小
- 6. 高度百分比圖像
- 7. Spark:列值的百分比百分比
- 8. 調整空白div的百分比
- 9. 整體百分比
- 10. 浮動IMG調整大小百分比
- 11. HTML圖像自動調整使用像素和百分比限制
- 12. 重新調整R中的百分比值
- 13. 通過產品圖像的百分比調整Magento水印的大小?
- 14. 真正的響應百分比圖像調整大小獨立的容器
- 15. 獲取圖像的百分比Swift
- 16. libgdx使用圖像的百分比
- 17. fancyBox放大圖像的百分比
- 18. 以CSS的百分比裁剪圖像
- 19. 知道圖像的加載百分比
- 20. 在百分比DIV中正確調整Google地圖的尺寸
- 21. 如何使用grunt將圖像大小調整爲其大小的百分比?
- 22. 根據表面積調整圖像大小以覆蓋div的百分比
- 23. div中的圖像不會根據div百分比調整大小
- 24. Highcharts百分比值
- 25. 餅圖中的百分比格式C#
- 26. 負整數百分比
- 27. 整數百分比PHP
- 28. devexpress餅圖顯示值的百分比
- 29. 如何將浮點百分比值轉換爲整數百分比?
- 30. 如何使用百分比作爲參數在HTML中調整圖像大小?
thx。如何設置百分比,例如,如果我想將圖像縮小到25%的大小? – Laziale
要麼重寫它以獲取百分比,要麼像這樣調用相對寬度和高度'ResizeImage(img,img.Width/4,img.Height/4);' –