本文作者:icy

dgc-Delphi/Golang/C++ 转换等操作的辅助工具

icy 05-09 164 抢沙发
dgc-Delphi/Golang/C++ 转换等操作的辅助工具摘要: 此工具最早源自于nnnnn几年前的 Delphi开发的-IDE插件工具 如今依然有 嘿只是只支持 Delphi最近正好要将Delphi的老项目-dfm转换里面数据取出来所以写了个读...

dgc.png

此工具

最早源自于nnnnn几年前的 Delphi开发的-IDE插件工具 如今依然有 嘿只是只支持 Delphi

最近正好要将Delphi的老项目-dfm转换里面数据取出来

所以写了个读取 Delphi-DFM的东西 以后有新的想法在。。。


文件转换数组的lua例子

if b2Golang({"home.jpeg","page.webp"},'output.go','b2Data') then  
  print('Golang-转换成功')
else
   print('Golang-转换失败')
end

if b2Pascal({"home.jpeg","page.webp"},'output.pas','b2Data') then  
  print('Pascal-转换成功')
else
   print('Pascal-转换失败')
end

if b2Cpp({"home.jpeg","page.webp"},'output.hpp','b2Data') then  
  print('C++-转换成功')
else
   print('C++-转换失败')
end


Delphi-Dfm转换的例子

local json = require("json")

ok, data = openDelphiDfm('your.dfm')
if ok then
	local file = io.open('data.json', "w")
	if file then
		file:write(json.encode(data))
		file:close()
	else
		print("无法打开文件进行写入。")
	end
end


dgc-win64.zip
类型:压缩文件|已下载:29|下载方式:免费下载
立即下载

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

分享

发表评论

快捷回复:

验证码

评论列表 (暂无评论,164人围观)参与讨论

还没有评论,来说两句吧...