|
@@ -2,55 +2,26 @@ import geopandas as gpd
|
|
|
import matplotlib.pyplot as plt
|
|
|
from shapely.wkt import loads
|
|
|
from PIL import Image
|
|
|
+import os
|
|
|
# 调整尺寸
|
|
|
|
|
|
|
|
|
-def resizeImage(filePath):
|
|
|
+def resizeImage(dir,fileName):
|
|
|
# 打开原始图片
|
|
|
- original_image = Image.open(filePath)
|
|
|
+ original_image = Image.open(dir+"/"+fileName)
|
|
|
# 调整图片尺寸到 256x256
|
|
|
resized_image = original_image.resize((256, 256))
|
|
|
- filePath = filePath.replace('tb', 'tb_256')
|
|
|
+ dir = dir.replace('tb', 'tb_256')
|
|
|
+ if not os.path.exists(dir):
|
|
|
+ os.makedirs(dir)
|
|
|
# 保存调整后的图片
|
|
|
- resized_image.save(filePath)
|
|
|
+ resized_image.save(dir+"/"+fileName)
|
|
|
|
|
|
|
|
|
# resizeImage('img/tb/6401812024070108270001change.png')
|
|
|
|
|
|
-# # 矢量保存为 PNG 图片
|
|
|
-# def savePng(fileName, ewkt):
|
|
|
-# # 新的 WKT 数据字符串
|
|
|
-
|
|
|
-# # 创建一个 GeoDataFrame
|
|
|
-# polygon = loads(ewkt.split(';')[1]) # 解析 WKT
|
|
|
-# gdf = gpd.GeoDataFrame(geometry=[polygon])
|
|
|
-
|
|
|
-# # 绘制
|
|
|
-# fig, ax = plt.subplots(figsize=(10, 10))
|
|
|
-
|
|
|
-# # 绘制多边形,外部填充为黑色,内部(洞)为白色
|
|
|
-# gdf.plot(ax=ax, edgecolor='black', facecolor='black')
|
|
|
-
|
|
|
-# # 设定中间洞为白色
|
|
|
-# ax.fill(*polygon.exterior.xy, color='black') # 填充外部为黑色
|
|
|
-# for interior in polygon.interiors:
|
|
|
-# ax.fill(*interior.xy, color='white') # 填充内部(洞)为白色
|
|
|
-
|
|
|
-# # 设置坐标轴范围
|
|
|
-# ax.set_xlim(gdf.total_bounds[[0, 2]])
|
|
|
-# ax.set_ylim(gdf.total_bounds[[1, 3]])
|
|
|
-
|
|
|
-# # 去掉坐标轴
|
|
|
-# ax.axis('off')
|
|
|
-
|
|
|
-# # 保存为 PNG 图片
|
|
|
-# filePath = 'img/tb/'+fileName+'.png'
|
|
|
-# plt.savefig(filePath, dpi=300,
|
|
|
-# bbox_inches='tight', pad_inches=0)
|
|
|
-# plt.close()
|
|
|
-# resizeImage(filePath)
|
|
|
-
|
|
|
-def savePng(fileName, ewkt):
|
|
|
+# 保存为 PNG 图片
|
|
|
+def savePng(fileName, ewkt,dir):
|
|
|
# 解析 WKT 数据字符串
|
|
|
geometry = loads(ewkt.split(';')[1]) # 解析 WKT
|
|
|
gdf = gpd.GeoDataFrame(geometry=[geometry])
|
|
@@ -78,12 +49,16 @@ def savePng(fileName, ewkt):
|
|
|
ax.axis('off')
|
|
|
|
|
|
# 保存为 PNG 图片
|
|
|
- filePath = 'img/tb/' + fileName + '.png'
|
|
|
- plt.savefig(filePath, dpi=300, bbox_inches='tight', pad_inches=0)
|
|
|
+ dir=dir+'/tb'
|
|
|
+ if not os.path.exists(dir):
|
|
|
+ os.makedirs(dir)
|
|
|
+
|
|
|
+ fileName = fileName + '.png'
|
|
|
+ plt.savefig(dir+"/"+fileName, dpi=300, bbox_inches='tight', pad_inches=0)
|
|
|
plt.close()
|
|
|
|
|
|
# 调用 resizeImage 函数来调整图片大小
|
|
|
- resizeImage(filePath)
|
|
|
+ resizeImage(dir,fileName)
|
|
|
|
|
|
|
|
|
|