【发布时间】:2021-05-30 08:19:37
【问题描述】:
是否可以在 PHP 中创建或修改 .glb 或 .gltf 文件?
比如我要加载一个.glb文件,修改后再保存,类似“图像处理与生成”-函数。
伪代码:
$model = @modelcreatefromglb("model.glb");
modelstring($model, 5, 0, 0, 0, "Hello world!");
modelglb($model, "model-with-text.glb");
我只找到了一个用于“blender”的小型库(.blend-Files),但这不是我们想要的方式。
【问题讨论】:
标签: php image-processing gltf 3d-modelling