上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: DICOM工具包(DCMTK)安装 先决条件 DICOM工具包(DCMTK)需要使用C++编译器进行编译。我们建议使用GNU C++编译器的版本高于4.2.1(在此版本的开发中,大部分工作是在Debian Linux上使用GNU C++ 6.3.0完成的)。该软件也已知可以使用SUNPro C++编 阅读全文
posted @ 2023-11-16 15:10 奇迹之耀 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 进入C:\Users\用户\AppData\Local\Microsoft\VisualStudio\16.0_eeb1e2a3(这个目录可能不同) 找到ApplicationPrivateSettings.xml,即可修改项目路径 阅读全文
posted @ 2023-10-19 15:10 奇迹之耀 阅读(288) 评论(0) 推荐(0) 编辑
摘要: $("#Content").focus(); // 创建 img 元素var img = document.createElement('img');img.src = 'xxxx';img.style.display = 'block'; // 插入 img 元素 if (window.getSe 阅读全文
posted @ 2023-09-20 19:17 奇迹之耀 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 如果将ContentType设置为application/octet-stream,那么在浏览器中会自动下载,需要将ContentType设置为对应类型 还有一种是设置了错误的参数,去掉文件名即可 public ActionResult Image() { string filePath = "D: 阅读全文
posted @ 2023-09-19 15:12 奇迹之耀 阅读(66) 评论(0) 推荐(0) 编辑
摘要: public ActionResult Image() { string filePath = "D:\\123.png"; Response.Cache.SetExpires(DateTime.Now.AddDays(365)); // 缓存有效期为365天 Response.Cache.SetC 阅读全文
posted @ 2023-09-19 15:03 奇迹之耀 阅读(39) 评论(0) 推荐(0) 编辑
摘要: c++中的函数名称在编译后改变了,需要利用dumpbin.exe找到编译后的名字 dumpbin.exe在VS安装目录 参考路径:C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.299 阅读全文
posted @ 2023-07-26 16:09 奇迹之耀 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 代码示例如下 <div id="a" style="display: flex; justify-content: center; align-items: center;width:200px;height:100%;background:skyblue" > <div id="b" style= 阅读全文
posted @ 2023-07-06 09:28 奇迹之耀 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 禁止选中 user-select: none; -webkit-user-select: none; -moz-user-select: none; 禁止元素拖拽 ondragstart="return false;" 阅读全文
posted @ 2023-06-28 18:29 奇迹之耀 阅读(53) 评论(0) 推荐(0) 编辑
摘要: function PaintText(x, y, color, size, text, toLeft) { if (toLeft == undefined) { toLeft = true; } y += size;ctx.font = "normal " + size+"px arial";ctx 阅读全文
posted @ 2023-06-15 16:29 奇迹之耀 阅读(216) 评论(0) 推荐(0) 编辑
摘要: CookieContainer cookieContainer = new CookieContainer();//创建CookieContainer Cookie cookie1 = new Cookie("pac_uid","0_8535fa0a41922","/","qq.com"); coo 阅读全文
posted @ 2023-06-15 14:40 奇迹之耀 阅读(953) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页