「動態 3D 標誌動畫」工作流程,將靜態向量標誌圖轉換為吸引人的 3D 動畫並加上材質。流程結合多個先進節點與模型,自動生成具視覺吸引力的首尾畫面,進而產生完整動畫。主要節點包括 LoadImage 匯入標誌、GeminiImage2Node 將 2D 圖像轉為 3D、ByteDanceFirstLastFrameNode 智慧生成動畫首尾畫面。流程同時運用 ByteDance 與 Google Gemini 等模型,確保材質應用與動畫流暢度。
技術上,流程自動化傳統複雜的 3D 動畫製作,AI 節點負責材質貼圖與畫面插值。Seedream 模型特別擅長生成真實感材質,Nano Banana Pro 模型則確保畫面過渡流暢。自動化流程讓使用者專注於創意輸入(如選擇材質),系統自動處理動畫生成細節。非常適合品牌設計師以最少工時提升視覺內容。
API
從程式碼使用此工作流
每個 Comfy 工作流都是一個 JSON 圖。下方的 payload 就是此工作流,與 ComfyUI 執行時完全相同 — 你可以從此 URL 取得、放入版本控制,或在 ComfyUI 載入並逐節點執行。
使用 Comfy SDK 以 TypeScript 或 Python 執行。相同程式碼可用於 Comfy Cloud 或你自架的 ComfyUI — 只需更改 base URL。
// Install (beta)
npm i @comfyorg/sdk
// Run "動感3D標誌動畫" (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("templates-3D_logo_texture_animation_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("1", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("3")[0].toFile("output.png"); // SaveImageSDK 需使用 API 格式的工作流:請在 ComfyUI 開啟此工作流,並使用 檔案 → 匯出工作流(API)。
常見問題
常見問題
Showing 30 of 30 templates













