将华南师范大学教务系统输出的pdf转为ics文件
SCNU-Jwxt-Pdf2Ics 的flutter版本。 在线 demo (转换功能有bug)
目前仅支持Android设备(无IOS设备用于开发)。
readme撰写中。
-
Create arb file under
\lib\l10n
, naming it asapp_[language code]_[script code]_[country code].arb
, you can simply copy one of these arb files then rename it. -
Translated text stored in
"key":"value"
form in arb file. keep the 'key' ,translate the value to your language. ThelangSelfDescr
means what language it is, and it's value would be displayed when user choosing language. -
The program will do the rest.
- offical guide here
需要注意的有
-
实现提取pdf文本及其坐标
-
日志文件实现非常暴力
-
由插件返回的文本
_pdfDoc.text
是Json格式的字符串,解析后得到{x:坐标值,y:坐标值,str:"单词"}
,单词的坐标为第一个字符的坐标,注意pdf中坐标轴方向的问题。 -
转换过程。
-
关于提取线(边框),
PdfParser.kt
中注释了收集线路径的方法,尚未重写数据整理的代码而没有使用。需要注意该方法并没有对坐标进行变换,与目前导出的文本坐标将不一致。 -
DOC/RawDataExample
下有绘制示例,注意坐标轴延伸方向,相关个人信息已改为NULL。
- 未适配单双周
-
日志功能是暴力地经由ffi调用dup2实现地址,第一次编译需要下载ndk,完成时间受网络状况影响。
-
本项目修改并直接使用了flutter-pdf-text中的代码,由导出文本改为导出符号及其坐标。插件计划仅上传到GitHub。
-
FetchCurrentTeachingWeek能够向教务处请求当前教学周,但假期时返回值未知,暂不使用。