摘要:
cd existing_folder 初始化仓库: git init git remote add origin git@git.gitlab.com:test/your_repo.git 添加文件并提交: git add . git commit -m "Initial commit" 推送本地分 阅读全文
摘要:
使用PIL和numpy生成指定格式指定大小的图片,1GB以内已测试正常。 from PIL import Image import numpy as np # 指定目标图片最小体积 target_size_mb = 10 # 每个像素包含3个字节(RGB通道),计算需要的总像素数 bytes_per 阅读全文