资源简介
直销推广分成结算系统源码
代码片段和文件信息
using System;
using System.Web;
using System.Drawing;
using System.Drawing.Imaging;
public partial class _export : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
if (Request.Form[“width“] != null && Request.Form[“width“] != String.Empty)
{
// image dimensions
int width = Int32.Parse((Request.Form[“width“].IndexOf(‘.‘) != -1) ? Request.Form[“width“].Substring(0 Request.Form[“width“].IndexOf(‘.‘)) : Request.Form[“width“]);
int height = Int32.Parse((Request.Form[“height“].IndexOf(‘.‘) != -1) ? Request.Form[“height“].Substring(0 Request.Form[“height“].IndexOf(‘.‘)) : Request.Form[“height“]);
// image
Bitmap result = new Bitmap(width height);
// set pixel colors
for (int y = 0; y < height; y++)
{
// column counter for the row
int x = 0;
// get current row data
string[] row = Request.Form[“r“ + y].Split(new char[] { ‘‘ });
// set pixels in the row
for (int c = 0; c < row.Length; c++)
{
// get pixel color and repeat count
string[] pixel = row[c].Split(new char[] { ‘:‘ });
Color current_color = ColorTranslator.FromHtml(“#“ + pixel[0]);
int repeat = pixel.Length > 1 ? Int32.Parse(pixel[1]) : 1;
// set pixel(s)
for (int l = 0; l < repeat; l++)
{
result.SetPixel(x y current_color);
x++;
}
}
}
// output image
// image type
Response.ContentType = “image/jpeg“;
Response.AddHeader(“Content-Disposition“ “attachment; filename=\“amchart.jpg\““);
// find image encoder for selected type
ImageCodecInfo[] encoders;
ImageCodecInfo img_encoder = null;
encoders = ImageCodecInfo.GetImageEncoders();
foreach (ImageCodecInfo codec in encoders)
if (codec.MimeType == Response.ContentType)
{
img_encoder = codec;
break;
}
// image parameters
EncoderParameter jpeg_quality = new EncoderParameter(Encoder.Quality 100L); // for jpeg images only
EncoderParameters enc_params = new EncoderParameters(1);
enc_params.Param[0] = jpeg_quality;
result.Save(Response.OutputStream img_encoder enc_params);
}
else
{
// invalid post
Response.Write(“Invalid post“);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1771 2011-05-18 19:29 biz2\0123456789\1.php
文件 17761 2011-04-27 10:57 biz2\0123456789\1_do.php
文件 5958 2011-05-18 20:51 biz2\0123456789\1_s.php
文件 776 2011-04-19 20:47 biz2\0123456789\1_suc.php
文件 14223 2011-05-01 18:37 biz2\0123456789\2.php
文件 2465 2011-04-27 11:00 biz2\0123456789\3.php
文件 4742 2011-05-18 20:51 biz2\0123456789\back_function.php
文件 341 2011-04-12 14:07 biz2\0123456789\images\11.gif
文件 215 2011-04-12 14:07 biz2\0123456789\images\22.gif
文件 337 2011-04-12 14:07 biz2\0123456789\images\33.gif
文件 749 2011-04-12 14:07 biz2\0123456789\images\back.gif
文件 273 2011-04-12 14:07 biz2\0123456789\images\bg.gif
文件 145 2011-04-12 14:07 biz2\0123456789\images\del.gif
文件 197 2011-04-12 14:07 biz2\0123456789\images\edt.gif
文件 736 2011-04-12 14:07 biz2\0123456789\images\first.gif
文件 736 2011-04-12 14:07 biz2\0123456789\images\go.gif
文件 741 2011-04-12 14:07 biz2\0123456789\images\last.gif
文件 745 2011-04-12 14:07 biz2\0123456789\images\next.gif
文件 699 2011-04-12 14:07 biz2\0123456789\images\tab_03.gif
文件 375 2011-04-12 14:07 biz2\0123456789\images\tab_05.gif
文件 752 2011-04-12 14:07 biz2\0123456789\images\tab_07.gif
文件 111 2011-04-12 14:07 biz2\0123456789\images\tab_12.gif
文件 112 2011-04-12 14:07 biz2\0123456789\images\tab_15.gif
文件 924 2011-04-12 14:07 biz2\0123456789\images\tab_17.gif
文件 715 2011-04-12 14:07 biz2\0123456789\images\tab_18.gif
文件 420 2011-04-12 14:07 biz2\0123456789\images\tab_19.gif
文件 770 2011-04-12 14:07 biz2\0123456789\images\tab_20.gif
文件 585 2011-04-12 14:07 biz2\0123456789\images\tb.gif
文件 57344 2011-04-12 14:07 biz2\110330市场奖励计划111.doc
文件 1888 2011-05-18 19:29 biz2\55\about.php
............此处省略1521个文件信息
相关资源
- 使用itextpdf将PDF大文件拆分成若干份指
- stm32 MPU6050四元数姿态结算程序
- 文本文件 txt 按指定行数拆分成多个独
- stm32 搭载RFID模块实现的无人超市自助
- 工程计算76款nb小软件
- 金蝶K3 V10.4结算中心演示账套
- 超市结算系统需求分析报告
- 三角形网格剖分程序,可以把任意平
- 根据卫星星历结算GPS卫星位置
- 医保结算医保结算系统
- 运动会分数统计 任务:参加运动会有
- JS购物车结算代码
- 安徽巢北凤凰山地区地层及其部分成
- 电子支付与结算课后习题答案
- 手机号码拆分成多个excel文件
- 结算管理系统——需求分析
- 分支与循环程序设计 将一个包含20个
- ecshop 推荐分成插件
评论
共有 条评论