{"id":1215,"date":"2017-11-27T23:12:03","date_gmt":"2017-11-27T15:12:03","guid":{"rendered":"http:\/\/www.iooe.cn\/?p=1215"},"modified":"2017-12-02T21:46:30","modified_gmt":"2017-12-02T13:46:30","slug":"linux%e5%91%bd%e4%bb%a4%e8%a1%8c%e4%b8%8b%e4%bd%bf%e7%94%a8imagemagick%e7%9a%84convert%e5%b7%a5%e5%85%b7%e6%89%b9%e9%87%8f%e8%bd%ac%e6%8d%a2%e5%9b%be%e7%89%87%e6%a0%bc%e5%bc%8f","status":"publish","type":"post","link":"http:\/\/www.iooe.cn\/index.php\/2017\/11\/27\/linux%e5%91%bd%e4%bb%a4%e8%a1%8c%e4%b8%8b%e4%bd%bf%e7%94%a8imagemagick%e7%9a%84convert%e5%b7%a5%e5%85%b7%e6%89%b9%e9%87%8f%e8%bd%ac%e6%8d%a2%e5%9b%be%e7%89%87%e6%a0%bc%e5%bc%8f\/","title":{"rendered":"Linux\u547d\u4ee4\u884c\u4e0b\u4f7f\u7528ImageMagick\u7684convert\u5de5\u5177\u6279\u91cf\u8f6c\u6362\u56fe\u7247\u683c\u5f0f"},"content":{"rendered":"<h1>\n\tLinux\u547d\u4ee4\u884c\u4e0b\u4f7f\u7528ImageMagick\u7684convert\u5de5\u5177\u6279\u91cf\u8f6c\u6362\u56fe\u7247\u683c\u5f0f<br \/>\n<\/h1>\n<p>\n\t&nbsp;\n<\/p>\n<p>\n\t\u4e3e\u4f8b\uff1a\u5c06menu\u76ee\u5f55\u4e0b\u7684\u6240\u6709png\u6587\u4ef6\u53d8\u66f4\u4e3ajpg\u6587\u4ef6\u3002\n<\/p>\n<h5>\n\t\u5b89\u88c5<br \/>\n<\/h5>\n<p>\n\t\u4f7f\u7528yum\u5373\u53ef\u5b89\u88c5\u3002\n<\/p>\n<pre>\r\nyum install ImageMagick <\/pre>\n<h5>\n\t\u53d8\u66f4\u524d<br \/>\n<\/h5>\n<pre title=\"\u53d8\u66f4\u524d\">\r\n[root@web menu]# tree\r\n.\r\n\u251c\u2500\u2500 sm1b561jbbgh.png\r\n\u251c\u2500\u2500 sm1p4x55am8x.png\r\n\u251c\u2500\u2500 sm1txq3jzqpd.png\r\n\u251c\u2500\u2500 sm1xov7dy5ou.png\r\n\u251c\u2500\u2500 sm1y6af5i685.png\r\n\u251c\u2500\u2500 smfo7aqhsk3t.png\r\n\u251c\u2500\u2500 smt9oezo59m2.png\r\n\u2514\u2500\u2500 smvymyr3wnlj.png\r\n<\/pre>\n<p>\n\t0 directories, 8 files\n<\/p>\n<p>\n\t&nbsp;\n<\/p>\n<h5>\n\t\u8f6c\u6362\u683c\u5f0f<br \/>\n<\/h5>\n<pre title=\"\u683c\u5f0f\u8f6c\u6362\">\r\nfor file in *.png\r\n    do convert $file ${file%%.*}.jpg\r\ndone<\/pre>\n<p>\n\t\u4e5f\u53ef\u4ee5\u76f4\u63a5\u5199\u5230\u4e00\u884c\n<\/p>\n<pre>\r\nfor file in *.png; do convert $file ${file%%.*}.jpg; done<\/pre>\n<h5>\n\t\u8f6c\u6362\u5b8c\u6210<br \/>\n<\/h5>\n<pre>\r\n[root@web menu]# tree\r\n.\r\n\u251c\u2500\u2500 sm1b561jbbgh.jpg\r\n\u251c\u2500\u2500 sm1b561jbbgh.png\r\n\u251c\u2500\u2500 sm1p4x55am8x.jpg\r\n\u251c\u2500\u2500 sm1p4x55am8x.png\r\n\u251c\u2500\u2500 sm1txq3jzqpd.jpg\r\n\u251c\u2500\u2500 sm1txq3jzqpd.png\r\n\u251c\u2500\u2500 sm1xov7dy5ou.jpg\r\n\u251c\u2500\u2500 sm1xov7dy5ou.png\r\n\u251c\u2500\u2500 sm1y6af5i685.jpg\r\n\u251c\u2500\u2500 sm1y6af5i685.png\r\n\u251c\u2500\u2500 smfo7aqhsk3t.jpg\r\n\u251c\u2500\u2500 smfo7aqhsk3t.png\r\n\u251c\u2500\u2500 smt9oezo59m2.jpg\r\n\u251c\u2500\u2500 smt9oezo59m2.png\r\n\u251c\u2500\u2500 smvymyr3wnlj.jpg\r\n\u2514\u2500\u2500 smvymyr3wnlj.png\r\n<\/pre>\n<p>\n\t0 directories, 16 files\n<\/p>\n<p>\n\t&nbsp;\n<\/p>\n<h5>\n\t\u9a8c\u8bc1\u6587\u4ef6\u683c\u5f0f<br \/>\n<\/h5>\n<pre>\r\n[root@web menu]# file sm1b561jbbgh.*\r\nsm1b561jbbgh.jpg: JPEG image data, JFIF standard 1.01\r\nsm1b561jbbgh.png: PNG image data, 67 x 57, 8-bit\/color RGB, non-interlaced<\/pre>\n<p>\n\t\u8fd9\u4e2a\u547d\u4ee4\u4e5f\u884c\uff1a\n<\/p>\n<p>\n\t\u5b83\u662f\u8f6c\u6362\u5927\u5c0f\n<\/p>\n<p>\n\tfor file in *.jpg;do convert $file -resize 1920&#215;1080&nbsp;$file; done\n<\/p>\n<p>\n\tfor file in $(find . -name &quot;*.JPG&quot;);do sudo convert $file -resize 200&#215;80! $file; done\n<\/p>\n<p>\n\t&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linux\u547d\u4ee4\u884c\u4e0b\u4f7f\u7528ImageMagick\u7684convert\u5de5\u5177\u6279\u91cf\u8f6c\u6362\u56fe\u7247\u683c\u5f0f &nbsp; \u4e3e\u4f8b\uff1a\u5c06menu\u76ee\u5f55\u4e0b\u7684\u6240\u6709png\u6587\u4ef6\u53d8\u66f4\u4e3ajpg\u6587\u4ef6\u3002 \u5b89\u88c5 &#8230; <\/p>\n<div class='button-mores'><a href='http:\/\/www.iooe.cn\/index.php\/2017\/11\/27\/linux%e5%91%bd%e4%bb%a4%e8%a1%8c%e4%b8%8b%e4%bd%bf%e7%94%a8imagemagick%e7%9a%84convert%e5%b7%a5%e5%85%b7%e6%89%b9%e9%87%8f%e8%bd%ac%e6%8d%a2%e5%9b%be%e7%89%87%e6%a0%bc%e5%bc%8f\/'> \u9605\u8bfb\u66f4\u591a&#8230; <\/a><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[2],"tags":[],"_links":{"self":[{"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/posts\/1215"}],"collection":[{"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/comments?post=1215"}],"version-history":[{"count":3,"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/posts\/1215\/revisions"}],"predecessor-version":[{"id":1219,"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/posts\/1215\/revisions\/1219"}],"wp:attachment":[{"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/media?parent=1215"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/categories?post=1215"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.iooe.cn\/index.php\/wp-json\/wp\/v2\/tags?post=1215"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}