간단한 OpenAI 이미지 생성기
초급
이것은자동화 워크플로우로, 5개의 노드를 포함합니다.주로 Form, FormTrigger, HttpRequest, ConvertToFile 등의 노드를 사용하며. 사용자 친화형 양식을 통해 OpenAI GPT-Image-1 모델을 사용하여 이미지 생성
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
카테고리
-
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "AqWXpCre4fsPEkAH",
"meta": {
"instanceId": "7dfa146768a036d27a67d125f90ea637bfb301bd4fd25d0086548016421d44bd"
},
"name": "Simple OpenAI Image Generator",
"tags": [],
"nodes": [
{
"id": "526c24bc-3bc5-48c3-ae1e-5b0c0352d07f",
"name": "파일로 변환",
"type": "n8n-nodes-base.convertToFile",
"position": [
440,
0
],
"parameters": {
"options": {},
"operation": "toBinary",
"sourceProperty": "data[0].b64_json"
},
"typeVersion": 1.1
},
{
"id": "20fdcc11-5e8a-4788-b3a3-e556996b59f7",
"name": "프롬프트 및 옵션",
"type": "n8n-nodes-base.formTrigger",
"position": [
0,
0
],
"webhookId": "b749da3f-836f-4996-a8ee-bc26f8677582",
"parameters": {
"options": {},
"formTitle": "OpenAI Image Generator",
"formFields": {
"values": [
{
"fieldLabel": "Prompt",
"placeholder": "Snow-covered mountain village in the Alps",
"requiredField": true
},
{
"fieldType": "dropdown",
"fieldLabel": "Image size",
"fieldOptions": {
"values": [
{
"option": "1024x1024"
},
{
"option": "1024x1536"
},
{
"option": "1536x1024"
}
]
},
"requiredField": true
}
]
}
},
"typeVersion": 2.2
},
{
"id": "eb220b1f-2091-492a-931f-1f2e344b32a6",
"name": "OpenAI 이미지 생성",
"type": "n8n-nodes-base.httpRequest",
"position": [
220,
0
],
"parameters": {
"url": "https://api.openai.com/v1/images/generations",
"method": "POST",
"options": {},
"sendBody": true,
"sendHeaders": true,
"authentication": "predefinedCredentialType",
"bodyParameters": {
"parameters": [
{
"name": "model",
"value": "gpt-image-1"
},
{
"name": "prompt",
"value": "={{ $json.Prompt }}"
},
{
"name": "n",
"value": "={{ 1 }}"
},
{
"name": "size",
"value": "={{ $json['Image size'] }}"
}
]
},
"nodeCredentialType": "openAiApi"
},
"credentials": {
"openAiApi": {
"id": "x1byAha0t8ltLIeW",
"name": "OpenAi account"
}
},
"typeVersion": 4.2
},
{
"id": "86718927-490e-4d97-9b0c-1118e2ccdcb6",
"name": "폼으로 돌아가기",
"type": "n8n-nodes-base.form",
"position": [
660,
0
],
"webhookId": "745af4a8-ab3c-4267-aa8d-a8998cc534e5",
"parameters": {
"options": {
"formTitle": "Result"
},
"operation": "completion",
"respondWith": "returnBinary",
"completionTitle": "Result",
"completionMessage": "Here is the created image:"
},
"typeVersion": 1
},
{
"id": "a069f63f-139e-4157-a44a-448224f2c119",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-600,
0
],
"parameters": {
"width": 500,
"height": 620,
"content": "# Welcome to my Simple OpenAI Image Generator Workflow!\n\nThis workflow creates an image with the new OpenAI image model \"GPT-Image-1\" based on a form input.\n\n## This workflow has the following sequence:\n\n1. Form trigger (image prompt and image size input)\n2. Generate the Image via OpenAI API.\n3. Return the image to the input form for download.\n\n## The following accesses are required for the workflow:\n- OpenAI API access: [Documentation](https://docs.n8n.io/integrations/builtin/credentials/openai/)\n\nYou can contact me via LinkedIn, if you have any questions: https://www.linkedin.com/in/friedemann-schuetz"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "d2376df0-9c26-4723-9e97-07fc226e7a53",
"connections": {
"526c24bc-3bc5-48c3-ae1e-5b0c0352d07f": {
"main": [
[
{
"node": "86718927-490e-4d97-9b0c-1118e2ccdcb6",
"type": "main",
"index": 0
}
]
]
},
"20fdcc11-5e8a-4788-b3a3-e556996b59f7": {
"main": [
[
{
"node": "eb220b1f-2091-492a-931f-1f2e344b32a6",
"type": "main",
"index": 0
}
]
]
},
"eb220b1f-2091-492a-931f-1f2e344b32a6": {
"main": [
[
{
"node": "526c24bc-3bc5-48c3-ae1e-5b0c0352d07f",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
초급
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
개발 완료 - Veo3를 통한 제품 광고 생성
Google Veo 3, Gemini 및 Airtable을 사용한 AI 비디오 광고 생성 자동화
Code
Form
Wait
+
Code
Form
Wait
16 노드Intuz
콘텐츠 제작
Unipile과 Google Sheets를 사용한 LinkedIn 연결 요청 및 첫 메시지 자동 발송
Unipile 및 Google Sheets를 사용하여 LinkedIn 연결 요청 및 아이스브레이킹 메시지 자동 전송
If
Set
Code
+
If
Set
Code
44 노드PollupAI
기타
나노🍌
OpenRouter를 통해 Gemini AI로 패션 모델 제품 광고 생성
Set
Code
Form
+
Set
Code
Form
10 노드Zakwan
콘텐츠 제작
在线마케팅周报
AI마케팅보고서(Google Analytics、Google Ads、Meta Ads) - 통해이메일/Telegram보내기
Set
Code
Telegram
+
Set
Code
Telegram
51 노드Friedemann Schuetz
마케팅
이미지 메타데이터 태깅 자동화
AI 이미지 태깅 및 키워드를 이미지 파일에 쓰기 자동화
Code
Merge
Google Drive
+
Code
Merge
Google Drive
9 노드Friedemann Schuetz
인공지능
헤어스타일 미리보기 내보내기
OpenAI 기반 AI 헤어스타일 미리보기 생성기와 LINE 그룹 공유
Webhook
Form Trigger
Http Request
+
Webhook
Form Trigger
Http Request
8 노드kote2
콘텐츠 제작