提交【截图Unity指定屏幕范围保存为pdf文件且指定存储路径】项目到github(略略略)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/itsxwz/article/details/84564344

1.Git & GithubDesktop

https://git-scm.com/ 下载Git(程序猿本猿使用)
https://desktop.github.com/ 下载GithubDesktop

2.命令语句

ps : github创建仓库后有对应命令语句
git init (init , auto create a .git folder)
git add . (add all)
git commit -m “commit” (commit to github)
git remote add origin “https://github.com/86K/Screenshot2PDF.git” (associating remote addresses )
git push -u origin master (master branch)

3.Screenshot2PDF

1.引擎版本:Unity2017.3.1f1

2.DLL:itestsharp

3.指定截屏起始点、截取屏幕的范围(宽度、高度),保存为pdf文件(A4)。
(原始做法:先存为图片,在转换为pdf)

4.指定pdf文件存储路径(绝对路径)。

5.所有数据可从xml文件进行配置。

项目地址:https://github.com/86K/Screenshot2PDF

猜你喜欢

转载自blog.csdn.net/itsxwz/article/details/84564344