摘要:
正常行驶的bitmap类型的二维码格式,加载到PDF中,将会导致二维码失真,无法扫描。 矢量图可根据尺寸大小进行调节,不会出现失真模糊情况 所用依赖 <PackageReference Include="FreeSpire.PDF" Version="8.6.0" />//操作PDF依赖 <Pack 阅读全文
摘要:
整体逻辑如下 前台引用spark-md5获取文件唯一ID值,即md5值,前台将文件进行分片,通过该值进行后台校验,后台以MD5值生成文件夹,以断点生成子文件,以此实现断点续传。 前台计算MD5,前台计算MD5快慢与文件大小相关,成功后方可请求后台,以防无值出现上传文件错乱。 后台用MD5值进行校验, 阅读全文
摘要:
HttpResponse response = HttpContext.Current.Response; response.Buffer = true; response.Clear(); response.ClearContent(); response.AddHeader("Content-D 阅读全文
摘要:
/// <summary> /// 将 Stream 转成 byte[] /// </summary> public byte[] StreamToBytes(Stream stream) { byte[] bytes = new byte[stream.Length]; stream.Read(b 阅读全文
摘要:
System.IO.StreamWriter sw = System.IO.File.AppendText( LogPath + LogFielPrefix + "Error-" + DateTime.Now.ToString("yyyy-MM-dd") + ".Log" ); sw.WriteLi 阅读全文
摘要:
已知本地文件名,返回给前台流 string filepath = path +“/” + filename +".txt"; if(System.IO.File.Exists(filepath)) { byte[] bytes; using (Stream stream = new Filestre 阅读全文
摘要:
<el-tooltip :content="'Switch value: ' + value" placement="top"> <el-switch v-model="value" active-color="#13ce66" inactive-color="#ff4949" active-val 阅读全文
摘要:
常用文件的文件头如下: (以前六位为准) JPEG (jpg),文件头:FFD8FF PNG (png),文件头:89504E47 GIF (gif),文件头:47494638 TIFF (tif),文件头:49492A00 Windows Bitmap (bmp),文件头:424D CAD (dw 阅读全文
摘要:
给树节点赋值时,执行下面代码会报错,原因是:DOM元素未加载完成. 以下为错误写法。 handleRowClick(row) { this.$refs.tree.setCheckedKeys(ids); } handleRowClick(row) { this.$nextTick(() =>{ th 阅读全文
摘要:
<el-tree :props="props" ref="treeList" :load="loadNode" check-strictly show-checkbox node-key='id' @check ='changetree' @check-change="handleCheckChan 阅读全文