本文介绍了为什么Bitmap Web应用程序的图像大小与Window Form应用程序不同?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
网络应用代码:
位图bitmapResult = null;
bitmapResult.Save( d:\\abc.jpeg,ImageFormat.Jpeg);
窗口应用代码:
bitmapResult.Save( D:\\pqr.jpeg,ImageFormat.Jpeg);
i使用过保存相同图像的功能,不同的名称,即abc和pqr,但两个图像的大小各不相同......为什么??
解决方案
Web app Code:
Bitmap bitmapResult = null;
bitmapResult.Save("D:\\abc.jpeg",ImageFormat.Jpeg);
Window app code:
bitmapResult.Save("D:\\pqr.jpeg",ImageFormat.Jpeg);
i have used same functions to save the same image with different name i.e abc and pqr but still both the images vary in their sizes...why??
解决方案
这篇关于为什么Bitmap Web应用程序的图像大小与Window Form应用程序不同?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!