iannotate pdf android,把PDF文件加入到iAnnotate应用的方式

Add PDF Files via Dropbox

Note: 当你把dropbox的帐号增加到iPad上后,iAnnotate 会自动下载你帐号下的pdf文件

1f0dd64b628935885e9b215514e7ef31.png

1. 现在的版本你可能需要通过连接:增加新连接,设置dropbox的帐号

2ead6190228dcc44db1d75fc719ce52f.png

2. 设置帐号 Setup Account.

060b7ebb91e88c91977389643975b99e.png

3. 当创建好了,就使用dropbox的内容

e258cb39ba565a748d02597250949c30.png

这样所有的pdf文件多呈现出来,可以点击查看//但dropbox对国内来说,还是有些不方便“世界上最伟大的云存储服务之一——Dropbox被证实无法从中国地区访问”

Add PDF Files Via Email

通过邮件守法,这个是比较常见的一种方式捣腾文件,在自己的app里面也可以这么用:

To register support, you will need to have something like the following in your Info.plist:

CFBundleDocumentTypesCFBundleTypeIconFilesDocument-molecules-320.pngDocument-molecules-64.pngCFBundleTypeNameMoleculesStructureFileCFBundleTypeRoleViewerLSHandlerRankOwnerLSItemContentTypescom.sunsetlakesoftware.molecules.pdborg.gnu.gnu-zip-archive http://stackoverflow.com/questions/2774343/how-do-i-associate-file-types-with-an-iphone-application

https://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/RegisteringtheFileTypesYourAppSupports.html#//apple_ref/doc/uid/TP40010411-SW1

51e0fd267af57b5c6b3975ff4e660827.png

5243b02171a050779355c9d3a0a993e8.png

Add PDF Files from iTunes

The iPad and iOS 4 have a great new feature called File Sharing that provides a convenient way for users to transfer files between their computer and your app.

But figuring out exactly what you need to do to get this working in real-world scenarios can be tricky. So I thought it would be useful to write a tutorial that covers how to do that with a real app, step by step! http://www.raywenderlich.com/1948/how-integrate-itunes-file-sharing-with-your-ios-app

http://xiongzhend.blog.163.com/blog/static/64098501201081661050609/

1. 连接你的ipad和PC,打开itun

6802da03411f537501f5957ee7ee01f1.png

2. 点击 iPad (位于 Devices)然后选择  Apps tab.可以看到允许在ipad和iTunes之间传文件的应用

cfe1c1153f729174cee323b7227b1b16.png

3. 在应用程序力表中找到 iAnnotate PDF ,在右侧点按钮 Add.

93d67ef6460d08ef8203c689d48618fe.png

4. Select the file you wish to add and click Choose.

当你选中文件后,添加,然后点sync

Add PDF Files from the Web

11a73c0405489997a4681366da7b9731.png

1. 在connection新建中,选 Web Download. 然后看到网页打开

f882d316ab9e0e069a7e6830f3edbaf3.png

2. Use the built-in browser to locate the PDF you wish to add to iAnnotate. Tap the link for the PDF you wish to view in iAnnotate.

注意下方的状态拦会显示Downloading…

3479578c10ad776eb75726b0ef7d069a.png

3. 下载完成后点按钮打开pdf

Add PDF Files Via Aji PDF Service

The Aji PDF Service is an application that runs on your computer which allows you to transfer files to and from your iPad without the need of iTunes or a service like Dropbox.

Note: When you use Aji PDF Service, make sure that the iPad and the computer hosting the service are on the same network

1.Download and install the Aji PDF service for Windows or Mac.

e8a1c4db751cd5fef01c6bc4ff1139ee.png

2.Launch the application and click the Add button.

57add4a4fb3c3afc6799fd8f41b4f7e0.png

3. Select the folder or file you wish to share with the iPad and click Open.

e6694ea205046451bf69026a992ed5ce.png

The file/folder you selected will be added to the list. You will also notice that the status of the Aji PDF Service should be Ready.

887acdb43084fa63c595913e68109cfb.png

4.Grab your iPad and tap the Fetch button. Tap the Aji PDF Service button to open the file list.

5f8dfc45b50bec83b8423f678bb99bbb.png

5.The computer sharing the files should be listed. Tap the computer and then the available folders until you locate the PDF file you wish to view.

Note:This connection is over Wi-Fi so make sure that the iPad and the computer sharing the files are on the same network.

How to Access Files Stored in iAnnotate

Each of the sections above describe how to transfer files to the iPad, but what if you wanted to view the files already stored or recently transferred to the iPad? All you have to do is open the Document Library, here’s how…

3e89c5469e2600c72c9464186edd81c8.png

1.Tap the Document Library icon to view the files stored on the iPad.

2d66c1458d13271f201da706029a0251.png

2.Tap to open the PDF you wish to view.

If you have any comments or questions please use the comments section below.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: 要在Halcon中将模板轮廓显示在图像上,可以使用dev_display_contour函数。该函数用于将指定的轮廓显示在输出窗口中,例如在Halcon的图形窗口或HALCON Visual Studio Code中的调试窗口中。 以下是一个简单的示例代码,可以将模板轮廓显示在图像上: ``` dev_display (Image) // 显示图像 dev_display_contour (TemplateContours, 'blue', 'none') // 显示轮廓,颜色为蓝色,无填充 ``` 其中,Image是输入的图像,TemplateContours是模板的轮廓,'blue'指定了轮廓的颜色为蓝色,'none'指定轮廓不需要填充。 如果要在图像中同时显示多个轮廓,可以在dev_display_contour函数中传入多个轮廓。例如: ``` dev_display_contour ([TemplateContours1, TemplateContours2], 'blue', 'none') ``` 这将同时显示TemplateContours1和TemplateContours2的轮廓,颜色为蓝色,无填充。 ### 回答2: Halcon是一种强大的机器视觉软件,它提供了丰富的图像处理和分析工具。在Halcon中,要将模板轮廓显示到图像上,可以通过以下步骤实现: 1. 首先,加载图像。使用Halcon的“read_image”函数加载一张图像。例如,可以使用以下代码加载名为“image.jpg”的图像: read_image(Image, 'image.jpg') 2. 接下来,定义并创建一个图层。使用Halcon的“create_ianotate_calib”函数创建一个图层,并将其与图像关联起来。例如,可以使用以下代码创建一个名为“Annotation”和图像分辨率相同的图层: create_iannotate_calib(Image, Annotation, '1', 1) 3. 然后,将模板轮廓添加到图层中。使用Halcon的“disp_image”函数显示图像,并使用“set_color”函数设置轮廓颜色。接下来,使用“disp_region”函数将模板的轮廓添加到图层中。例如,可以使用以下代码将名为“Template”中的轮廓添加到“Annotation”图层中,并设置颜色为红色: disp_image(Image, Annotation) set_color(Annotation, 'red') disp_region(Template, Annotation) 4. 最后,显示图像和模板轮廓。使用Halcon的“get_display_obj”函数将图层中的内容显示到屏幕上。例如,可以使用以下代码显示图像和模板轮廓: get_display_obj(Annotation, WinHandle) set_part(Template) set_display_obj_props('visible', 'true') sdl_display_obj(WinHandle, Annotation) 通过以上步骤,我们可以将模板轮廓显示到图像上。请注意,上述代码仅为示例,实际使用时可能需要根据应用程序的需求进行适当的修改。 ### 回答3: 要将Halcon模板轮廓显示在图像上,可以按照以下步骤进行操作: 1. 首先,使用Halcon的find_shape_model函数找到图像中的模板轮廓。这个函数会返回一个包含模板轮廓位置信息的数据结构。 2. 然后,使用Halcon的get_shape_model_contours函数从上一步中获得的数据结构中提取出模板轮廓。 3. 接下来,使用Halcon的gen_contour_polygon_xld函数将模板轮廓转换成多边形表示。 4. 为了在图像上显示模板轮廓,可以使用Halcon的disp_region函数将多边形轮廓显示为颜色填充的区域。 5. 最后,可以使用Halcon的disp_image函数将原始图像和带有模板轮廓的区域显示在同一幅图像上,以便进行直观观察和分析。 通过以上步骤,我们可以将Halcon模板轮廓显示在图像上,从而方便了视觉检测和定位任务的执行。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值