asp.net中C实现缩放图片的例子

头文件:

 代码如下 复制代码

#include <atlconv.h>
#include <AtlBase.h>
#include <tchar.h>
#include "gdiplus.h"
#include <GdiPlusGraphics.h>
using namespace Gdiplus;
#pragma comment(lib, "gdiplus.lib")

CPP:

 代码如下 复制代码
int GetEncoderClsid(const WCHAR* format, CLSID* pClsid)
{
UINT  num = 0;  // number of image encoders
UINT  size = 0; // size of the image encoder array in bytes
 
ImageCodecInfo* pImageCodecInfo = NULL;
 
GetImageEncodersSize(&num, &size);
if(size == 0)
return -1;  // Failure www.111cn.net
 
pImageCodecInfo = (ImageCodecInfo*)(malloc(size));
if(pImageCodecInfo == NULL)
return -1;  // Failure
 
GetImageEncoders(num, size, pImageCodecInfo);
 
for(UINT j = 0; j < num; ++j)
{
if( wcscmp(pImageCodecInfo[j].MimeType, format) == 0 )
{
*pClsid = pImageCodecInfo[j].Clsid;
free(pImageCodecInfo);
return j;  // Success
}
}
 
free(pImageCodecInfo);
return -1;  // Failure
}
 
void DrawMainWindow(Image* img,int w,int h)
{
HDC hDC = GetDC(AfxGetMainWnd()->m_hWnd);
if (hDC)
{
Graphics graphics(hDC);
graphics.DrawImage(img,w,h,img->GetWidth(),img->GetHeight());
ReleaseDC(AfxGetMainWnd()->m_hWnd,hDC);
}
 
}
 
void GetThumbnail(LPCSTR srcFile,LPCSTR dstFile,int width,int height,bool constRatio)
{
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
GdiplusStartup(&gdiplusToken,&gdiplusStartupInput,NULL);
 
USES_CONVERSION;
Image srcImage(A2W(srcFile));
Image *dstImage;
 
int srcWidth = srcImage.GetWidth();
int srcHeight = srcImage.GetHeight();
 
if( constRatio ){
if ( width / srcWidth < height / srcHeight ) {
height = width * srcHeight / srcWidth;
}
else {
width = height * srcWidth / srcHeight;
}
}
dstImage = srcImage.GetThumbnailImage(width,height);
 
CLSID imgClsid;
GetEncoderClsid(L"image/jpeg",&imgClsid);
dstImage->Save(A2W(dstFile),&imgClsid,NULL);
 
DrawMainWindow(&srcImage,0,0);
DrawMainWindow(dstImage,0,srcImage.GetHeight()+10);
delete dstImage;
dstImage = NULL;
 
//GdiplusShutdown(gdiplusToken);
}

使用方法:
 

 代码如下 复制代码
GetThumbnail("image.jpg","cc.jpg",200,80,TRUE);

时间: 2024-11-13 06:44:15

asp.net中C实现缩放图片的例子的相关文章

ASP 编程中 20 个非常有用的例子——适合初学者

编程|初学|初学 如果内容很多,请先在本机编辑好,以免session过期导致内容丢失.ASP 编程中 20 个非常有用的例子 1.如何用Asp判断你的网站的虚拟物理路径 答:使用Mappath方法 < p align="center" >< font size="4" face="Arial" >< b > The Physical path to this virtual website is: < /

ASP 编程中20个非常有用的例子

编程 ASP 编程中 20 个非常有用的例子1.如何用Asp判断你的网站的虚拟物理路径 答:使用Mappath方法 < p align="center" >< font size="4" face="Arial" >< b > The Physical path to this virtual website is: < /b >< /font > < font color=&qu

ASP编程中15个非常有用的例子(一)

ASP编程中15个非常有用的例子 enet学院 1.如何用Asp判断你的网站的虚拟物理路径 答 使用Mappath方法 <p align="center"><font size="4" face="Arial"><b> The Physical path to this virtual website is: </b></font> <font color="#FF000

ASP编程中15个非常有用的例子(一)(转)

编程 ASP编程中15个非常有用的例子 enet学院 1.如何用Asp判断你的网站的虚拟物理路径 答 使用Mappath方法 <p align="center"><font size="4" face="Arial"><b> The Physical path to this virtual website is: </b></font> <font color="#FF

ASP编程中15个非常有用的例子 (二)

ASP编程中15个非常有用的例子 enet学院 8.强迫输入密码对话框 答把这句话放载页面的开头 <% response.status="401 not Authorized" response.end %> 9 如何传递变量从一页到另一页 答 用HIDDEN类型来传递变量 <% form method="post" action="mynextpage.asp"> <% for each item in reque

ASP编程中15个非常有用的例子 (二)(转)

编程 ASP编程中15个非常有用的例子 enet学院 8.强迫输入密码对话框 答把这句话放载页面的开头 <% response.status="401 not Authorized" response.end %> 9 如何传递变量从一页到另一页 答 用HIDDEN类型来传递变量 <% form method="post" action="mynextpage.asp"> <% for each item in re

在ASP.NET中自动合并小图片并使用CSS Sprite显示出来

前几天MS的ASP.NET小组推出了一个小组件:Sprite and Image Optimization Framework,用于生成Sprite CSS,及将小的图片生成一副大图. 下载地址:http://aspnet.codeplex.com/releases/view/50140 8189E6B8-FBE4-4F01-8F9F-5687C0EA9F59 下载后工程中有一个类库,一个ASP.NET WebForm示例以及一个ASP.NET MVC示例. 下面我们就看看ASP.NET MVC

asp.net中利用ashx实现图片防盗链的原理分析_实用技巧

 直接分析盗链原理:看下面用httpwatch截获的http发送的数据 GET /Img.ashx?img=svn_work.gif HTTP/1.1 Accept: */* Referer: http://www.jb51.net/ Accept-Language: zh-cn UA-CPU: x86 Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NE

asp.net中利用ashx实现图片防盗链代码_实用技巧

GET /Img.ashx?img=svn_work.gif HTTP/1.1 Accept: */* Referer: http://www.svnhost.cn/ Accept-Language: zh-cn UA-CPU: x86 Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727