资源简介

直销推广分成结算系统源码

资源截图

代码片段和文件信息

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个文件信息

评论

共有 条评论