【求助】有没有可以缩放图形的控件或者提供一些建议

Reker熊 2004-12-28 02:57:06
案例说明:
现有一堆数据需画出波形图(正铉波)

要求:
波形图画出来后,当使用鼠标拖拉的时候,可以将选定部分的图形进行局部放大
不是那种单纯的放大图形
比如原来一段波是纵坐标为1000-2000数据绘制而成,在没有放大的时候,坐标轴Y轴上大概以500作为一个区间段来显示(500,1000,1500,2000),而局部放大后以100作为单位显示(100,200,300。。。)也就是显示的数据更加细化的意思

不知道大家有没有此类的控件或者源代码可以供参考
能够提建议也好
谢谢
...全文
167 15 打赏 收藏 转发到动态 举报
写回复
用AI写文章
15 条回复
切换为时间正序
请发表友善的回复…
发表回复
Reker熊 2005-01-06
  • 打赏
  • 举报
回复
谢谢The_Gathering
朋友们如果能提供思路或者代码都好
The_Gathering 2005-01-05
  • 打赏
  • 举报
回复
现在看来很多代码都写的不好了,如果能给楼主提供一些思路就不错了
The_Gathering 2005-01-05
  • 打赏
  • 举报
回复
ftp://tt:ftp4tt@61.139.44.81/CurveControl.rar
偶很久以前写的了,最小二乘法拟和曲线的,虽然不是正弦曲线,但可能对楼主还是有帮助的
Reker熊 2005-01-04
  • 打赏
  • 举报
回复
up
meixiaofeng 2004-12-29
  • 打赏
  • 举报
回复
up
owg 2004-12-28
  • 打赏
  • 举报
回复
到 www.evget.com 找图表控件,肯定有你需要的控件
simonyou 2004-12-28
  • 打赏
  • 举报
回复
一点帮助`~~自己改改算法
using System.Drawing.Imaging;
namespace Exam_C
{
/// <summary>
/// ToThumbnailImage 的摘要说明。
/// </summary>
public class ToThumbnailImage : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面

ToThumbnailImages( "lionsky.jpg","lionsky001.jpg",100);
}
/*
Create By lion
2003-05-20 19:00
Copyright (C) 2004 www.LionSky.Net. All rights reserved.
Web: http://www.Lionsky.net ;
Email: lion-a@sohu.com
*/


static Hashtable htmimes=new Hashtable();
internal readonly string AllowExt = ".jpe|.jpeg|.jpg|.png|.tif|.tiff|.bmp";

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
#region htmimes[".jpe"]="image/jpeg";
htmimes[".jpeg"]="image/jpeg";
htmimes[".jpg"]="image/jpeg";
htmimes[".png"]="image/png";
htmimes[".tif"]="image/tiff";
htmimes[".tiff"]="image/tiff";
htmimes[".bmp"]="image/bmp";
#endregion
//调用生成缩略图方法
ToThumbnailImages("lionsky.jpg","b.gif",300);
}
#endregion

#region Helper

/// <summary>
/// 获取图像编码解码器的所有相关信息
/// </summary>
/// <param name="mimeType">包含编码解码器的多用途网际邮件扩充协议 (MIME) 类型的字符串</param>
/// <returns>返回图像编码解码器的所有相关信息</returns>
static ImageCodecInfo GetCodecInfo(string mimeType)
{
ImageCodecInfo[] CodecInfo = ImageCodecInfo.GetImageEncoders();
foreach(ImageCodecInfo ici in CodecInfo)
{
if(ici.MimeType == mimeType)return ici;
}
return null;
}

/// <summary>
/// 检测扩展名的有效性
/// </summary>
/// <param name="sExt">文件名扩展名</param>
/// <returns>如果扩展名有效,返回true,否则返回false.</returns>
bool CheckValidExt(string sExt)
{
bool flag=false;
string[] aExt = AllowExt.Split('|');
foreach(string filetype in aExt)
{
if(filetype.ToLower()==sExt)
{
flag = true;
break;
}
}
return flag;
}

/// <summary>
/// 保存图片
/// </summary>
/// <param name="image">Image 对象</param>
/// <param name="savePath">保存路径</param>
/// <param name="ici">指定格式的编解码参数</param>
void SaveImage(System.Drawing.Image image,string savePath,ImageCodecInfo ici)
{
//设置 原图片 对象的 EncoderParameters 对象
EncoderParameters parameters = new EncoderParameters(1);
parameters.Param[0] = new EncoderParameter(Encoder.Quality, ((long) 90));
image.Save(savePath, ici, parameters);
parameters.Dispose();
}
#endregion

#region Methods

/// <summary>
/// 生成缩略图
/// </summary>
/// <param name="sourceImagePath">原图片路径(相对路径)</param>
/// <param name="thumbnailImagePath">生成的缩略图路径,如果为空则保存为原图片路径(相对路径)</param>
/// <param name="thumbnailImageWidth">缩略图的宽度(高度与按源图片比例自动生成)</param>
public void ToThumbnailImages(string sourceImagePath,string thumbnailImagePath,int thumbnailImageWidth)
{
string SourceImagePath = sourceImagePath;
string ThumbnailImagePath = thumbnailImagePath;
int ThumbnailImageWidth = thumbnailImageWidth;
string sExt = SourceImagePath.Substring(SourceImagePath.LastIndexOf(".")).ToLower();
if(SourceImagePath.ToString()==System.String.Empty) throw new NullReferenceException("SourceImagePath is null!");
if(!CheckValidExt(sExt))
{
throw new ArgumentException("原图片文件格式不正确,支持的格式有[ "+ AllowExt +" ]","SourceImagePath");
}
//从 原图片 创建 Image 对象
System.Drawing.Image image = System.Drawing.Image.FromFile(HttpContext.Current.Server.MapPath(SourceImagePath));
int num = ((ThumbnailImageWidth / 4) * 3);
int width = image.Width;
int height = image.Height;
//计算图片的比例
if ((((double) width) / ((double) height)) >= 1.3333333333333333f)
{
num = ((height * ThumbnailImageWidth) / width);
}
else
{
ThumbnailImageWidth = ((width * num) / height);
}
if ((ThumbnailImageWidth < 1) || (num < 1))
{
return;
}
//用指定的大小和格式初始化 Bitmap 类的新实例
Bitmap bitmap = new Bitmap(ThumbnailImageWidth, num, PixelFormat.Format32bppArgb);
//从指定的 Image 对象创建新 Graphics 对象
Graphics graphics = Graphics.FromImage(bitmap);
//清除整个绘图面并以透明背景色填充
graphics.Clear(Color.Transparent);
//在指定位置并且按指定大小绘制 原图片 对象
graphics.DrawImage(image, new Rectangle(0, 0, ThumbnailImageWidth, num));
image.Dispose();
try
{
//将此 原图片 以指定格式并用指定的编解码参数保存到指定文件
string savepath = (ThumbnailImagePath==null?SourceImagePath:ThumbnailImagePath);
SaveImage(bitmap,HttpContext.Current.Server.MapPath(savepath),GetCodecInfo((string)htmimes[sExt]));
}
catch(System.Exception e)
{
throw e;
}
finally
{
bitmap.Dispose();
graphics.Dispose();
}
}
#endregion

}
}
Fibona 2004-12-28
  • 打赏
  • 举报
回复
http://soft.0zones.com这里面是最多的软件了,其它的就不清楚了。
Reker熊 2004-12-28
  • 打赏
  • 举报
回复
to 楼上
这个下不了
timiil 2004-12-28
  • 打赏
  • 举报
回复
http://soft.0zones.com/SoftView/SoftView_10792.html
上址。
Reker熊 2004-12-28
  • 打赏
  • 举报
回复
还有什么建议或者代码控件能够不吝赐教吗?
(搜索LeadTools Raster Imaging Pro For .NET V14.0好少的结果,哪里能下?)
egxsun 2004-12-28
  • 打赏
  • 举报
回复
up
Richardhu 2004-12-28
  • 打赏
  • 举报
回复
jimh 2004-12-28
  • 打赏
  • 举报
回复
自己做也可以,不过计算比例很麻烦
timiil 2004-12-28
  • 打赏
  • 举报
回复
LeadTools Raster Imaging Pro For .NET V14.0 恐怕值得试。。。
注册码也是很不小心就能找到的。

110,533

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧