FocusSurfaceView 该库大部分参考IsseiAoki的SimpleCropView https://github.com/IsseiAoki/SimpleCropView 实现了在相机的预览界面指定一个区域的大小,形状和位置,只拍摄该指定区域里的图像 支持 API Level 10 and above. 使用方法: 在工程和module里的build.gradle分别添加 allprojects { repositories { ... maven { url 'https://jitpack.io' } } } dependencies { compile 'com.github.CGmaybe10:FocusSurfaceView:v1.0.1' } private FocusSurfaceView previewSFV = (FocusSurfaceView) findViewById(R.id.preview_sv); mCa
2021-09-10 17:03:27 1.51MB Android代码
1
新款海康不能在onvif和海康测试工具预览画面的解决方法2018.1.25
1
cad web预览 工具 加载的方法需写在$(document).ready(function(){}) 中 加载转换的图纸文件 图纸文件是四个SVG/JS 文件,由 AutoXchange转换生成 下载地址:http://www.tailormade.com/downloads/ax2017_W32_01.zip >ax2015 -i=mypath/myinputfile.dwg -o=mypath/myoutputfile.js -f=js -size=2800 -prec=1 -ml=0.4 // Open a drawing instance var FileNameNoExtension = "T2-03"; // Name of the drawing file to be loaded , it contains of a set of 4 files, var FileNamePath = "../drawings/"; // Path to the drawing file to be loaded, path is relative from the calling document cvjs_LoadDrawing("floorPlan", FileNamePath, FileNameNoExtension); 加载图纸(需安装转换工具) // Open a drawing instance var FileNameUrl = "http://creator.vizquery.com/City_map.dwg"; var FileNameUrlNoExtension = "City_map"; cvjs_LoadDrawing_Conversion("floorPlan", FileNameUrl, FileNameUrlNoExtension, "", "");
2021-09-09 17:24:47 492KB cad web
1
eDrawings 是用于共享和存档 2D 和 3D 产品设计数据的免费查看和发布应用程序。eDrawings™ 软件是第一个支持电子邮件功能的交流工具,它大大简化了产品设计信息的共享问题。 使用这一工具,可更加有效地与参与产品开发的每个人进行协作。 利用快速、可靠且方便的 eDrawings 文件,可以准确展现借助市场上使用最广的 CAD 系统所创建的 3D 模型和 2D 工程图。
2021-09-08 22:39:52 56.4MB dwg预览
1
在visual studio 2019开发环境中通过vb.net 引用edrawings控件开发实现solidworks,proe等三维软件的文件预览,提供源码和可执行文件
2021-09-08 14:49:08 255KB vb.net edrawings 三维模型预览
1
javascript+html头像上传预览,显示圆形头像预览。
2021-09-08 00:53:56 117KB 头像上传
1
看的前辈的,有的不是很完整,我给修改了一下,大家可以看看,我直接创建个java web 项目,你们直接打包运行就应该可以了。
2021-09-07 21:51:00 1.4MB OpenOffice 4.1.3
1
本工程有具体的demo ,QT 海康sdk 预览 回放 多线程 同时处理 多路 包含所有的库,不懂的可以私信我
2021-09-07 18:13:54 31.88MB QT C++ 海康SDK 多线程
1
首先机子上安装有office,在COM中添加引用Microsoft.Word.11.0.Object.Library(或11.0以上) Microsoft.Office.Interop.Word.Application myWordApp = null; Microsoft.Office.Interop.Word.Document doc = null; object Filename = path + "\\" + TaskID + ".docx";//目的文件 object templateFile = System.Windows.Forms.Application.StartupPath + @"\Template.docx";//模板文件,有一个五列一行的表 System.IO.File.Copy(templateFile.ToString(), Filename.ToString(), true);//模板WORD中有一个五列的表头,分别是卡号,串口号,发送指令条数,接收指令条数,收发成功率 myWordApp = new Microsoft.Office.Interop.Word.Application(); doc = myWordApp.Documents.Open(ref Filename, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing); /////显示页码 object oAlignment = Microsoft.Office.Interop.Word.WdPageNumberAlignment.wdAlignPageNumberCenter; object oFirstPage = true; oAlignment = Microsoft.Office.Interop.Word.WdPageNumberAlignment.wdAlignPageNumberCenter; myWordApp.Selection.Sections[1].Footers[Microsoft.Office.Interop.Word.WdHeaderFooterIndex.wdHeaderFooterPrimary].PageNumbers.Add(ref oAlignment, ref oFirstPage); myWordApp.Selection.Sections[1].Footers[Microsoft.Office.Interop.Word.WdHeaderFooterIndex.wdHeaderFooterPrimary].PageNumbers.NumberStyle = Microsoft.Office.Interop.Word.WdPageNumberStyle.wdPageNumberStyleNumberInDash; for (int i = 2; i < 102; i++)//举例100台 { doc.Tables[1].Rows.Add(ref Nothing);//表格增加一行 doc.Tables[1].Cell(i, 1).Range.Text = "250297";//卡号 doc.Tables[1].Cell(i, 2).Range.Text = "COM12";//串口号 doc.Tables[1].Cell(i, 3).Range.Text = "100";//发送指令条数 doc.Tables[1].Cell(i, 4).Range.Text = "99";//接收指令条数
2021-09-06 10:41:39 7KB C# 动态插入数据 打印 预览
1
AndroidUVCCamera 最近在做一个外接USB相机的项目,github上搜了下,有很多开源的库,这些库底层基本用的都是同一套东西,但上层业务比较繁琐,使用起来很不方便,并且也不太符合项目的业务需求,所以重新封装了一下,本库只需几个简单的API即可完成预览、拍照功能,无需关注复杂的USB插拔处理逻辑。文档地址: 最好用的Android UVC Camera库 1.添加依赖 Step 1. Add the JitPack repository to your build file.Add it in your root build.gradle at the end of repositories: allprojects { repositories { ... maven { url 'https://jitpack.io' } } } Step 2. A
2021-09-06 09:43:41 703KB 附件源码 文章源码
1