{"id":3749,"date":"2014-11-14T09:46:21","date_gmt":"2014-11-14T00:46:21","guid":{"rendered":"http:\/\/auctionpro.co.kr\/?p=3749"},"modified":"2025-06-11T22:02:00","modified_gmt":"2025-06-11T13:02:00","slug":"html%eb%a5%bc-pdf-%eb%98%90%eb%8a%94-%ec%9d%b4%eb%af%b8%ec%a7%80-%eb%b3%80%ea%b2%bd-%ec%98%a4%ed%94%88-%ec%86%8c%ec%8a%a4","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=3749","title":{"rendered":"HTML\ub97c  PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4"},"content":{"rendered":"\n<p><code>wkhtmltopdf<\/code> and <code>wkhtmltoimage<\/code> are open source (LGPL) command line tools to render HTML into PDF<\/p>\n\n\n\n<p>\uc0ac\uc774\ud2b8 : &nbsp;<a href=\"http:\/\/wkhtmltopdf.org\/index.html\" target=\"_blank\" rel=\"noopener\">http:\/\/wkhtmltopdf.org\/index.html<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1044\" height=\"849\" src=\"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg\" alt=\"wkhtmltopdf\" class=\"wp-image-3750\" srcset=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg 1044w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf-300x243.jpg 300w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf-1024x832.jpg 1024w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf-150x121.jpg 150w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf-400x325.jpg 400w\" sizes=\"auto, (max-width: 1044px) 100vw, 1044px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">wkhtmltopdf \ub97c \uc0ac\uc6a9\ud558\uc5ec html \uc744 pdf \ub85c \ub9cc\ub4dc\ub294 c# \ucf54\ub4dc \uc0d8\ud50c<\/h3>\n\n\n\n<p>\uc6b0\uc120, <code>wkhtmltopdf<\/code>\uac00 \uc2dc\uc2a4\ud15c\uc5d0 \uc124\uce58\ub418\uc5b4 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4. <a>\uc5ec\uae30<\/a>\uc5d0\uc11c \ub2e4\uc6b4\ub85c\ub4dc \ubc0f \uc124\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \">using System;\nusing System.Diagnostics;\n\nclass Program\n{\n    static void Main(string[] args)\n    {\n        \/\/ HTML \ud30c\uc77c \uacbd\ub85c\uc640 \ucd9c\ub825 PDF \ud30c\uc77c \uacbd\ub85c\ub97c \uc124\uc815\ud569\ub2c8\ub2e4.\n        string htmlPath = @\"C:\\path\\to\\input.html\";\n        string pdfPath = @\"C:\\path\\to\\output.pdf\";\n\n        \/\/ wkhtmltopdf \uc2e4\ud589 \ud30c\uc77c \uacbd\ub85c\ub97c \uc124\uc815\ud569\ub2c8\ub2e4.\n        string wkhtmltopdfPath = @\"C:\\path\\to\\wkhtmltopdf.exe\";\n\n        \/\/ \uba85\ub839\uc904 \uc778\uc218\ub97c \uc124\uc815\ud569\ub2c8\ub2e4.\n        string arguments = $\"\\\"{htmlPath}\\\" \\\"{pdfPath}\\\"\";\n\n        \/\/ ProcessStartInfo\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud504\ub85c\uc138\uc2a4\ub97c \uad6c\uc131\ud569\ub2c8\ub2e4.\n        ProcessStartInfo processStartInfo = new ProcessStartInfo\n        {\n            FileName = wkhtmltopdfPath,\n            Arguments = arguments,\n            UseShellExecute = false,\n            RedirectStandardOutput = true,\n            RedirectStandardError = true,\n            CreateNoWindow = true\n        };\n\n        try\n        {\n            \/\/ \ud504\ub85c\uc138\uc2a4\ub97c \uc2dc\uc791\ud569\ub2c8\ub2e4.\n            using (Process process = Process.Start(processStartInfo))\n            {\n                \/\/ \ud45c\uc900 \ucd9c\ub825 \ubc0f \ud45c\uc900 \uc624\ub958 \uc2a4\ud2b8\ub9bc\uc744 \uc77d\uc2b5\ub2c8\ub2e4.\n                string output = process.StandardOutput.ReadToEnd();\n                string error = process.StandardError.ReadToEnd();\n\n                \/\/ \ud504\ub85c\uc138\uc2a4\uac00 \uc644\ub8cc\ub420 \ub54c\uae4c\uc9c0 \ub300\uae30\ud569\ub2c8\ub2e4.\n                process.WaitForExit();\n\n                \/\/ \ud504\ub85c\uc138\uc2a4 \uc885\ub8cc \ucf54\ub4dc\ub97c \ud655\uc778\ud569\ub2c8\ub2e4.\n                if (process.ExitCode == 0)\n                {\n                    Console.WriteLine(\"PDF \uc0dd\uc131 \uc131\uacf5!\");\n                }\n                else\n                {\n                    Console.WriteLine(\"PDF \uc0dd\uc131 \uc2e4\ud328:\");\n                    Console.WriteLine(error);\n                }\n            }\n        }\n        catch (Exception ex)\n        {\n            \/\/ \uc608\uc678 \ucc98\ub9ac\n            Console.WriteLine(\"\uc608\uc678 \ubc1c\uc0dd: \" + ex.Message);\n        }\n    }\n}\n<\/pre><\/div>\n\n\n\n<p>\uc774 \ucf54\ub4dc\ub294 \ub2e4\uc74c\uacfc \uac19\uc774 \ub3d9\uc791\ud569\ub2c8\ub2e4:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><code>wkhtmltopdf<\/code> \uc2e4\ud589 \ud30c\uc77c, \uc785\ub825 HTML \ud30c\uc77c, \ucd9c\ub825 PDF \ud30c\uc77c\uc758 \uacbd\ub85c\ub97c \uc124\uc815\ud569\ub2c8\ub2e4.<\/li>\n\n\n\n<li><code>ProcessStartInfo<\/code>\ub97c \uc0ac\uc6a9\ud558\uc5ec <code>wkhtmltopdf<\/code> \uba85\ub839\uc744 \uc2e4\ud589\ud558\uae30 \uc704\ud55c \ud504\ub85c\uc138\uc2a4\ub97c \uad6c\uc131\ud569\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ud504\ub85c\uc138\uc2a4\ub97c \uc2dc\uc791\ud558\uace0 \ud45c\uc900 \ucd9c\ub825 \ubc0f \ud45c\uc900 \uc624\ub958 \uc2a4\ud2b8\ub9bc\uc744 \uc77d\uc2b5\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ud504\ub85c\uc138\uc2a4\uac00 \uc644\ub8cc\ub420 \ub54c\uae4c\uc9c0 \ub300\uae30\ud558\uace0, \uc131\uacf5 \uc5ec\ubd80\ub97c \ud655\uc778\ud569\ub2c8\ub2e4.<\/li>\n<\/ol>\n\n\n\n<p>\uc774 \ucf54\ub4dc\ub97c \uc2e4\ud589\ud558\uae30 \uc804\uc5d0, <code>htmlPath<\/code>, <code>pdfPath<\/code>, <code>wkhtmltopdfPath<\/code> \ubcc0\uc218 \uac12\uc744 \uc2e4\uc81c \uacbd\ub85c\ub85c \ubcc0\uacbd\ud574\uc57c \ud569\ub2c8\ub2e4. \ub610\ud55c, <code>wkhtmltopdf<\/code>\uac00 \uc2dc\uc2a4\ud15c \uacbd\ub85c\uc5d0 \uc5c6\uc744 \uacbd\uc6b0 \uc804\uccb4 \uacbd\ub85c\ub97c \uc9c0\uc815\ud574\uc57c \ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<p>\uc774 \ucf54\ub4dc\ub97c \ud1b5\ud574 C#\uc5d0\uc11c <code>wkhtmltopdf<\/code>\ub97c \uc0ac\uc6a9\ud558\uc5ec HTML \ud30c\uc77c\uc744 PDF\ub85c \ubcc0\ud658\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Sample2<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \" >    class PDFGenerator\n    {\n        \/\/public const string HtmlToPdfExePath = @\"C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltopdf.exe\";\n        \/\/public const string PATH = @\"D:\\PDFGenerator\\PDF\\\";\n\n        public string WritePDFCreate(string HTML_DATA, string sFileName)\n        {\n            \/\/\ub118\uc5b4\uc628 HTML STRING \uac12\n            string HTML = \"\";\n\n            try\n            {\n                HTML = HTML_DATA.Replace(\"UTF-8\", \"EUC-KR\").Replace(\"utf-8\", \"EUC-KR\");  \/\/\uae00\uc790 \uae68\uc9d0 \ubc29\uc9c0\n                HTML = HTML.Replace(\"UTF-16\", \"EUC-KR\").Replace(\"utf-16\", \"EUC-KR\");\n            }\n            catch (Exception ex)\n            {\n                ex.ToString();\n            }\n\n            \/\/\ud30c\uc77c\uc774\ub984 \uc124\uc815\n            string outFileName = sFileName + \".pdf\";\n\n            \/\/\ud30c\uc77c\uad00\ub828 \uc800\uc7a5 \uc704\uce58\n            string path = Config.PdfPath;\n\n            Process p;\n            StreamWriter stdin;\n            ProcessStartInfo psi = new ProcessStartInfo();\n\n            \/\/ run the conversion utility\n            psi.UseShellExecute = false;\n            psi.FileName = Config.HtmlToPdfExePath;\n            psi.CreateNoWindow = true;\n            psi.RedirectStandardInput = true;\n            psi.RedirectStandardOutput = true;\n            psi.RedirectStandardError = true;\n            \/\/psi.StandardOutputEncoding = Encoding.UTF8;\n            \/\/psi.StandardErrorEncoding = Encoding.UTF8;\n\n            \/\/\ud3f4\ub354 \uccb4\ud06c \ud6c4 \ud3f4\ub354 \uc0dd\uc131\n            string dirPath = path;\n            DirectoryInfo di = new DirectoryInfo(dirPath);\n            if (di.Exists == false)\n            {\n                di.Create();\n            }\n\n            psi.Arguments = \"-q -n --zoom 1.25 --margin-left 10mm - \" + path + outFileName;\n            \n            p = Process.Start(psi);\n\n            try\n            {\n                stdin = p.StandardInput;\n                stdin.AutoFlush = true;\n                stdin.Write(HTML);\n                stdin.Close();\n\n                \/\/\ub9cc\ub4e4\uc5b4\uc9c4 pdf \ud30c\uc77c \ub2e4\uc6b4\ub85c\ub4dc \ud615\uc2dd\uc73c\ub85c \uac00\uc838\uc624\uae30\n                if (p.WaitForExit(15000))\n                {\n\n                }\n\n            }\n            catch\n            {\n                sFileName = \"\";\n            }\n\n            finally\n            {\n                p.Close();\n                p.Dispose();\n                \/\/System.IO.File.Delete(path + outFileName);\n            }\n\n            return (sFileName + \".pdf\");\n\n        }\n    }\n\n<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>wkhtmltopdf and wkhtmltoimage are open source (LGPL) command line tools to render HTML into PDF \uc0ac\uc774\ud2b8 : &nbsp;http:\/\/wkhtmltopdf.org\/index.html wkhtmltopdf \ub97c \uc0ac\uc6a9\ud558\uc5ec html \uc744 pdf \ub85c <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=3749\" title=\"HTML\ub97c  PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[47],"tags":[181],"class_list":["post-3749","post","type-post","status-publish","format-standard","hentry","category-free-developer-tools","tag-pdf"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4 - AuctionPro<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.auctionpro.co.kr\/?p=3749\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4 - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"wkhtmltopdf and wkhtmltoimage are open source (LGPL) command line tools to render HTML into PDF \uc0ac\uc774\ud2b8 : &nbsp;http:\/\/wkhtmltopdf.org\/index.html wkhtmltopdf \ub97c \uc0ac\uc6a9\ud558\uc5ec html \uc744 pdf \ub85c [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=3749\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2014-11-14T00:46:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-11T13:02:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1044\" \/>\n\t<meta property=\"og:image:height\" content=\"849\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"golgol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"golgol\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4\",\"datePublished\":\"2014-11-14T00:46:21+00:00\",\"dateModified\":\"2025-06-11T13:02:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749\"},\"wordCount\":31,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/wkhtmltopdf.jpg\",\"keywords\":[\"PDF\"],\"articleSection\":[\"[Dev]Free tools\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749\",\"name\":\"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4 - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/wkhtmltopdf.jpg\",\"datePublished\":\"2014-11-14T00:46:21+00:00\",\"dateModified\":\"2025-06-11T13:02:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#primaryimage\",\"url\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/wkhtmltopdf.jpg\",\"contentUrl\":\"https:\\\/\\\/auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2014\\\/11\\\/wkhtmltopdf.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=3749#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\",\"name\":\"AuctionPro\",\"description\":\"\uc625\uc158\ud504\ub85c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\",\"name\":\"golgol\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?author=6\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4 - AuctionPro","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.auctionpro.co.kr\/?p=3749","og_locale":"ko_KR","og_type":"article","og_title":"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4 - AuctionPro","og_description":"wkhtmltopdf and wkhtmltoimage are open source (LGPL) command line tools to render HTML into PDF \uc0ac\uc774\ud2b8 : &nbsp;http:\/\/wkhtmltopdf.org\/index.html wkhtmltopdf \ub97c \uc0ac\uc6a9\ud558\uc5ec html \uc744 pdf \ub85c [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=3749","og_site_name":"AuctionPro","article_published_time":"2014-11-14T00:46:21+00:00","article_modified_time":"2025-06-11T13:02:00+00:00","og_image":[{"width":1044,"height":849,"url":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg","type":"image\/jpeg"}],"author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=3749#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=3749"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4","datePublished":"2014-11-14T00:46:21+00:00","dateModified":"2025-06-11T13:02:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=3749"},"wordCount":31,"commentCount":0,"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=3749#primaryimage"},"thumbnailUrl":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg","keywords":["PDF"],"articleSection":["[Dev]Free tools"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=3749#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=3749","url":"https:\/\/www.auctionpro.co.kr\/?p=3749","name":"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4 - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=3749#primaryimage"},"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=3749#primaryimage"},"thumbnailUrl":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg","datePublished":"2014-11-14T00:46:21+00:00","dateModified":"2025-06-11T13:02:00+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=3749#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=3749"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.auctionpro.co.kr\/?p=3749#primaryimage","url":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg","contentUrl":"https:\/\/auctionpro.co.kr\/wp-content\/uploads\/2014\/11\/wkhtmltopdf.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=3749#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"HTML\ub97c PDF \ub610\ub294 \uc774\ubbf8\uc9c0 \ubcc0\uacbd \uc624\ud508 \uc18c\uc2a4"}]},{"@type":"WebSite","@id":"https:\/\/www.auctionpro.co.kr\/#website","url":"https:\/\/www.auctionpro.co.kr\/","name":"AuctionPro","description":"\uc625\uc158\ud504\ub85c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auctionpro.co.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2","name":"golgol","url":"https:\/\/www.auctionpro.co.kr\/?author=6"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/3749","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3749"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/3749\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}