如何保存<ipython.core.display.image object =“”>

时间:2017-01-06 19:22:56

标签: python ipython display

我有png数据,我可以通过IPython.core.display.Image

显示

代码示例:

class GoogleMap(object):
    """Class that stores a PNG image"""
    def __init__(self, lat, long, satellite=True,
                    zoom=10, size=(400,400), sensor=False):
        """Define the map parameters"""
        base="http://maps.googleapis.com/maps/api/staticmap?"
        params=dict(
                sensor= str(sensor).lower(),
                zoom= zoom,
                size= "x".join(map(str, size)),
                center= ",".join(map(str, (lat, long) )),
                style="feature:all|element:labels|visibility:off"
                )

        if satellite:
            params["maptype"]="satellite"

        # Fetch our PNG image data
        self.image = requests.get(base, params=params).content


import IPython
IPython.core.display.Image(GoogleMap(51.0, 0.0).image)

结果:

result

如何将此图片保存到png文件中。

我真的很想把它放到循环中,所以1 png文件连续有3张图片。

感谢。

1 个答案:

答案 0 :(得分:1)

您需要做的就是使用Python的标准文件写入行为:

img = GoogleMap(51.0, 0.0)
with open("GoogleMap.png", "wb") as png:
    png.write(img.image)

这是访问所需的三个纬度/长对的一种非常简单的方法:

places = [GoogleMap(51.0, 0.0), GoogleMap(60.2, 5.2), GoogleMap(71.9, 8.9)]
for position, place in enumerate(places):
    with open("place_{}.png".format(position), "wb") as png:
        png.write(place.image)

我将由你来编写一个能够采用任意纬度/经度对并保存它们图像的函数。