新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文主要是利用Python的第三方库Pillow,实现单通道灰度图像的颜色翻转功能。
青羊网站建设公司创新互联,青羊网站设计制作,有大型网站制作公司丰富经验。已为青羊成百上千提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的青羊做网站的公司定做!# -*- encoding:utf-8 -*- import os import sys from PIL import Image from PIL import ImageOps def img_gray_invert(img_path): """ invert input image. """ if not os.path.isfile(img_path): print "Error for input file path." return image = Image.open(img_path) image = image.convert("L") inverted_image = ImageOps.invert(image) return inverted_image if __name__ == '__main__': argv = sys.argv if len(argv) != 3: print """Example: python gray_invert.py test/htc.png test/htc_inv.png """ else: img_file_path = argv[1] invert_image = img_gray_invert(img_file_path) img_file_out = argv[2] invert_image.save(img_file_out)
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。