OCR.space 테이블 인식을 사용하여 영수증에서 텍스트 추출
중급
이것은Invoice Processing, Multimodal AI분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Set, Form, FormTrigger, HttpRequest 등의 노드를 사용하며. OCR.space 테이블 인식을 사용하여 영수증에서 텍스트를 추출
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
사용된 노드 (9)
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "51c6a64ef13fda2e6aa96576c25d72519ca4bc44cea9da20af60a642b594d835"
},
"nodes": [
{
"id": "0663af99-4977-4723-828d-d5e5725d036a",
"name": "트리거 • OCR용 이미지 업로드",
"type": "n8n-nodes-base.formTrigger",
"position": [
576,
288
],
"webhookId": "64016fb2-7c40-4bd4-bf2a-7dacc23d3a7a",
"parameters": {
"options": {},
"formTitle": "Receipt OCR",
"formFields": {
"values": [
{
"fieldType": "file",
"fieldLabel": "File (Max 1MB)",
"multipleFiles": false,
"requiredField": true
},
{
"fieldType": "radio",
"fieldLabel": "Is it a table",
"fieldOptions": {
"values": [
{
"option": "Yes"
},
{
"option": "No"
}
]
},
"requiredField": true
}
]
},
"formDescription": "Upload an image to extract text via OCR.\nMax file size: 1 MB"
},
"typeVersion": 2.3,
"alwaysOutputData": false
},
{
"id": "815fc903-a65e-46a5-8177-a0cf8d40aa01",
"name": "준비 • 입력값 정규화",
"type": "n8n-nodes-base.set",
"position": [
832,
288
],
"parameters": {
"options": {
"stripBinary": false
},
"assignments": {
"assignments": [
{
"id": "c454bde2-a211-448e-ac21-e044044915f6",
"name": "isTable",
"type": "string",
"value": "={{ ($json[\"Is it a table\"] ?? $json.Is_it_a_table) === \"Yes\" }}"
},
{
"id": "07545925-b27a-4471-a5d0-93abc740acf6",
"name": "File (Max 1MB)",
"type": "object",
"value": "={{ $json['File (Max 1MB)'] ?? $json.File__Max_1MB_ }}"
}
]
},
"includeOtherFields": true
},
"typeVersion": 3.4
},
{
"id": "baf07380-1179-4077-9c7f-07c92e65bee5",
"name": "OCR.space • 이미지 파싱",
"type": "n8n-nodes-base.httpRequest",
"position": [
1088,
288
],
"parameters": {
"url": "https://api.ocr.space/parse/image",
"method": "POST",
"options": {},
"sendBody": true,
"contentType": "multipart-form-data",
"authentication": "genericCredentialType",
"bodyParameters": {
"parameters": [
{
"name": "language",
"value": "pol"
},
{
"name": "file",
"parameterType": "formBinaryData",
"inputDataFieldName": "File__Max_1MB_"
},
{
"name": "OCREngine",
"value": "2"
},
{
"name": "isTable",
"value": "={{ $json.isTable }}"
}
]
},
"genericAuthType": "httpHeaderAuth"
},
"credentials": {
"httpHeaderAuth": {
"id": "lqCRwWbcuW6VTaIz",
"name": "ocr.space"
}
},
"typeVersion": 4.2
},
{
"id": "3e1fe87f-e776-469d-bae4-f76de5032ec3",
"name": "표시 • OCR 텍스트 보기",
"type": "n8n-nodes-base.form",
"position": [
1344,
288
],
"webhookId": "f85368ca-28f1-4c49-bc12-1801c5f8a6b7",
"parameters": {
"options": {
"customCss": ".card {\n\tposition: relative;\n\tmax-width: 500px;\n\tmargin: 20px auto;\n\tpadding: 20px;\n\tbackground: #fefefe !important;\n\tborder-radius: 12px;\n\tbox-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);\n\tfont-family: 'Courier New', monospace;\n\tcolor: #1f2937;\n\tfont-size: 16px;\n\tline-height: 1.6;\n\twhite-space: pre-wrap;\n}\n\n.header p { text-align: left; }\n\n@media (max-width: 768px) {\n\t.card { margin: 10px !important; padding: 15px !important; font-size: 14px; }\n}\n",
"formTitle": "OCR Result"
},
"operation": "completion",
"completionTitle": "OCR Result",
"completionMessage": "={{ $json.ParsedResults[0].ParsedText }}"
},
"typeVersion": 2.3
},
{
"id": "ba102eff-44a3-48f3-bf37-2c4db27fa1a0",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
240,
96
],
"parameters": {
"height": 176,
"content": "### 📌 What this flow does \nUpload a receipt image → select if it’s a table → OCR.space parses it → result displayed in a styled card."
},
"typeVersion": 1
},
{
"id": "4c2f78c5-f0f1-40b8-a776-8fd846ec6922",
"name": "스티커 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
512,
96
],
"parameters": {
"height": 400,
"content": "### 🔹 Trigger • Upload image for OCR \nPublic form that collects the image (≤1 MB) and asks if the content is a table."
},
"typeVersion": 1
},
{
"id": "f9d0e10c-466b-4456-9f89-2d50e4a1cf46",
"name": "스티커 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
752,
96
],
"parameters": {
"width": 256,
"height": 400,
"content": "### 🔹 Prepare • Normalize inputs \nConverts the radio field (“Yes/No”) into a true/false `isTable` flag. Keeps the uploaded file attached."
},
"typeVersion": 1
},
{
"id": "36621099-7926-463a-a36d-f185cbfb8b82",
"name": "스티커 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
1008,
96
],
"parameters": {
"width": 256,
"height": 400,
"content": "### 🔹 OCR.space • Parse image \nSends file + options to OCR.space API. \nLanguage = `pol`, Engine = `2`, passes `isTable`. \n⚠️ Needs API key (header auth)."
},
"typeVersion": 1
},
{
"id": "70f2a795-2c1c-4265-b5d2-af8af703814c",
"name": "스티커 노트4",
"type": "n8n-nodes-base.stickyNote",
"position": [
1264,
96
],
"parameters": {
"height": 400,
"content": "### 🔹 Display • Show OCR text \nShows parsed text from `ParsedResults[0].ParsedText` inside a clean, monospace card for easy copy-paste."
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"baf07380-1179-4077-9c7f-07c92e65bee5": {
"main": [
[
{
"node": "3e1fe87f-e776-469d-bae4-f76de5032ec3",
"type": "main",
"index": 0
}
]
]
},
"815fc903-a65e-46a5-8177-a0cf8d40aa01": {
"main": [
[
{
"node": "baf07380-1179-4077-9c7f-07c92e65bee5",
"type": "main",
"index": 0
}
]
]
},
"0663af99-4977-4723-828d-d5e5725d036a": {
"main": [
[
{
"node": "815fc903-a65e-46a5-8177-a0cf8d40aa01",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 청구서 처리, 멀티모달 AI
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Vision API와 LLM을 사용하여 자동화된发票 수집 및 데이터 추출
Google Vision OCR, Gemini LLM, Google Sheets를 사용하여 청구서 데이터를 추출하고 구조화합니다.
Set
Code
Telegram
+
Set
Code
Telegram
17 노드Budi SJ
청구서 처리
다단계 문서 승인 및 감사 워크플로우
Supabase 및 Gmail을 사용한 다단계 워크플로 문서 승인 자동화
If
Set
Form
+
If
Set
Form
38 노드Alok Kumar
문서 추출
자동화된 데모 예약 시스템
Outlook 캘린더와 Zoom을 통합한 자동화된 데모 예약 시스템
If
Set
Code
+
If
Set
Code
21 노드AureusR
기타
TransferNow를 사용한 대용량 파일 자동 발송
사용TransferNow자동上传并보내기大文件
If
Set
Code
+
If
Set
Code
19 노드Davide
콘텐츠 제작
Sora 2
OpenAI Sora 2를 사용하여 AI 비디오 생성하고 Google 클라우드 드라이브에 업로드
Set
Form
Wait
+
Set
Form
Wait
21 노드Juan Cristóbal Andrews
콘텐츠 제작
나노🍌
OpenRouter를 통해 Gemini AI로 패션 모델 제품 광고 생성
Set
Code
Form
+
Set
Code
Form
10 노드Zakwan
콘텐츠 제작