{"id":7653,"date":"2024-11-14T12:33:31","date_gmt":"2024-11-14T04:33:31","guid":{"rendered":"https:\/\/fwq.ai\/blog\/7653\/"},"modified":"2024-11-14T12:33:31","modified_gmt":"2024-11-14T04:33:31","slug":"%e5%a6%82%e4%bd%95%e5%b0%86%e7%bd%91%e7%bb%9c%e5%9b%be%e7%89%87%e5%af%bc%e5%87%ba%e5%88%b0-excel-%e8%a1%a8%e6%a0%bc%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/7653\/","title":{"rendered":"\u5982\u4f55\u5c06\u7f51\u7edc\u56fe\u7247\u5bfc\u51fa\u5230 Excel \u8868\u683c\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173111905269446.jpg\" class=\"aligncenter\" title=\"\u5982\u4f55\u5c06\u7f51\u7edc\u56fe\u7247\u5bfc\u51fa\u5230 Excel \u8868\u683c\uff1f\u63d2\u56fe\" alt=\"\u5982\u4f55\u5c06\u7f51\u7edc\u56fe\u7247\u5bfc\u51fa\u5230 Excel \u8868\u683c\uff1f\u63d2\u56fe\" \/><\/p>\n<p>\u9488\u5bf9\u5c06\u6570\u636e\u56fe\u7247\u5bfc\u51fa\u5230 excel \u4e2d\u7684\u9700\u6c42\uff0c\u6211\u4eec\u53ef\u4ee5\u6839\u636e\u9898\u4e3b\u63d0\u4f9b\u7684\u793a\u4f8b\u4ee3\u7801\u8fdb\u884c\u4fee\u6539\u3002\u5bfc\u51fa\u56fe\u7247\u65f6\uff0cexcel \u65e0\u6cd5\u76f4\u63a5\u8bc6\u522b\u7f51\u7edc\u4e0a\u7684\u56fe\u7247\u94fe\u63a5\uff0c\u9700\u8981\u5c06\u56fe\u7247\u4e0b\u8f7d\u5230\u672c\u5730\u518d\u8fdb\u884c\u5bfc\u51fa\u3002<\/p>\n<p>\u5177\u4f53\u4fee\u6539\u5982\u4e0b\uff1a<\/p>\n<p>\u5728\u5faa\u73af\u904d\u5386\u6570\u636e\u65f6\uff0c\u5c06\u6bcf\u5f20\u56fe\u7247\u7684\u7f51\u7edc\u94fe\u63a5\u8f6c\u6362\u4e3a\u672c\u5730\u8def\u5f84\uff1a<\/p>\n<pre>$imageurl = $item['img'];\n$gdimage = imagecreatefromjpeg($imageurl); <\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4f7f\u7528 imagecreatefromjpeg() \u51fd\u6570\u5c06\u56fe\u7247\u4ece\u7f51\u7edc\u4e0b\u8f7d\u5230\u672c\u5730\uff0c\u5e76\u4fdd\u5b58\u4e3a $gdimage \u53d8\u91cf\u3002<\/p>\n<p>\u63a5\u4e0b\u6765\uff0c\u4f7f\u7528 phpexcel_worksheet_memorydrawing \u7c7b\u521b\u5efa\u56fe\u7247\u5bf9\u8c61\uff0c\u5e76\u8bbe\u7f6e\u5176\u5c5e\u6027\uff1a<\/p>\n<pre>$objdrawing = new phpexcel_worksheet_memorydrawing();\n$objdrawing-&gt;setname('sample image');\n$objdrawing-&gt;setdescription('sample image');\n$objdrawing-&gt;setimageresource($gdimage);\n$objdrawing-&gt;setrenderingfunction(phpexcel_worksheet_memorydrawing::rendering_jpeg);\n$objdrawing-&gt;setmimetype(phpexcel_worksheet_memorydrawing::mimetype_default);\n$objdrawing-&gt;setheight(150); \n$objdrawing-&gt;setcoordinates($k . $highestrow); <\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<ul>\n<li>setimageresource() \u8bbe\u7f6e\u56fe\u7247\u8d44\u6e90\u3002<\/li>\n<li>setrenderingfunction() \u8bbe\u7f6e\u56fe\u7247\u5448\u73b0\u683c\u5f0f\u4e3a jpeg\u3002<\/li>\n<li>setmimetype() \u8bbe\u7f6e\u56fe\u7247 mime \u7c7b\u578b\u3002<\/li>\n<li>setheight() \u8bbe\u7f6e\u56fe\u7247\u9ad8\u5ea6\u4e3a 150 \u50cf\u7d20\u3002<\/li>\n<li>setcoordinates() \u8bbe\u7f6e\u56fe\u7247\u5728\u5de5\u4f5c\u8868\u4e2d\u7684\u5750\u6807\uff0c\u4ee5 $k$highestrow \u8868\u793a\uff0c\u5176\u4e2d $k \u662f\u5217\u540d\u79f0\uff0c$highestrow \u662f\u884c\u53f7\u3002<\/li>\n<\/ul>\n<p>\u6700\u540e\uff0c\u5c06\u56fe\u7247\u5bf9\u8c61\u6dfb\u52a0\u5230\u5de5\u4f5c\u8868\u4e2d\uff1a<\/p>\n<pre>$objDrawing-&gt;setWorksheet($sheet);<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u5982\u4f55\u5c06\u7f51\u7edc\u56fe\u7247\u5bfc\u51fa\u5230 Excel \u8868\u683c\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u7f51\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u9488\u5bf9\u5c06\u6570\u636e\u56fe\u7247\u5bfc\u51fa\u5230 excel \u4e2d\u7684\u9700\u6c42\uff0c\u6211\u4eec\u53ef\u4ee5\u6839\u636e\u9898\u4e3b\u63d0\u4f9b\u7684\u793a\u4f8b\u4ee3\u7801\u8fdb\u884c\u4fee\u6539\u3002\u5bfc\u51fa\u56fe\u7247\u65f6\uff0cexcel \u65e0\u6cd5\u76f4\u63a5\u8bc6\u522b\u7f51\u7edc\u4e0a\u7684\u56fe\u7247\u94fe\u63a5\uff0c\u9700\u8981\u5c06\u56fe\u7247\u4e0b\u8f7d\u5230\u672c\u5730\u518d\u8fdb\u884c\u5bfc\u51fa\u3002 \u5177\u4f53\u4fee\u6539\u5982\u4e0b\uff1a \u5728\u5faa\u73af\u904d\u5386\u6570\u636e\u65f6\uff0c\u5c06\u6bcf\u5f20\u56fe\u7247\u7684\u7f51\u7edc\u94fe\u63a5\u8f6c\u6362\u4e3a\u672c\u5730\u8def\u5f84\uff1a $imageurl = $item[&#8216;img&#8217;]; $gdimage = imagecreatefromjpeg($imageurl); \u767b\u5f55\u540e\u590d\u5236 \u4f7f\u7528 imagecreatefromjpeg() \u51fd\u6570\u5c06\u56fe\u7247\u4ece\u7f51\u7edc\u4e0b\u8f7d\u5230\u672c\u5730\uff0c\u5e76\u4fdd\u5b58\u4e3a $gdimage \u53d8\u91cf\u3002 \u63a5\u4e0b\u6765\uff0c\u4f7f\u7528 phpexcel_worksheet_memorydrawing \u7c7b\u521b\u5efa\u56fe\u7247\u5bf9\u8c61\uff0c\u5e76\u8bbe\u7f6e\u5176\u5c5e\u6027\uff1a $objdrawing = new phpexcel_worksheet_memorydrawing(); $objdrawing-&gt;setname(&#8216;sample image&#8217;); $objdrawing-&gt;setdescription(&#8216;sample image&#8217;); $objdrawing-&gt;setimageresource($gdimage); $objdrawing-&gt;setrenderingfunction(phpexcel_worksheet_memorydrawing::rendering_jpeg); $objdrawing-&gt;setmimetype(phpexcel_worksheet_memorydrawing::mimetype_default); $objdrawing-&gt;setheight(150); $objdrawing-&gt;setcoordinates($k . $highestrow); \u767b\u5f55\u540e\u590d\u5236 setimageresource() \u8bbe\u7f6e\u56fe\u7247\u8d44\u6e90\u3002 setrenderingfunction() \u8bbe\u7f6e\u56fe\u7247\u5448\u73b0\u683c\u5f0f\u4e3a jpeg\u3002 setmimetype() \u8bbe\u7f6e\u56fe\u7247 mime \u7c7b\u578b\u3002 setheight() \u8bbe\u7f6e\u56fe\u7247\u9ad8\u5ea6\u4e3a 150 \u50cf\u7d20\u3002 setcoordinates() \u8bbe\u7f6e\u56fe\u7247\u5728\u5de5\u4f5c\u8868\u4e2d\u7684\u5750\u6807\uff0c\u4ee5 $k$highestrow \u8868\u793a\uff0c\u5176\u4e2d $k [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-7653","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/7653","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=7653"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/7653\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=7653"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=7653"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=7653"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}