在树莓派拍照如何将照片存在指定文件夹
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在树莓派拍照如何将照片存在指定文件夹相关的知识,希望对你有一定的参考价值。
参考技术A 1.0定义全局变量string photoPath;//图片保存的位置
string stuID;//获得学生学号
2.0初始情况下判断要保存的路劲是否存在tryif (!Directory.Exists(@"E:/学生党员信息管理系统/Resource/photo/"))//当该文件夹不存在时//创建文件夹
Directory.CreateDirectory(@"E:/学生党员信息管理系统/Resource/photo/");this.photoPath = @"E:/学生党员信息管理系统/Resource/photo/";catch (IOException ioEx)MessageBox.Show("初始化系统文件夹失败:", "消息");return;
3.0定义一个方法弹出一个对话框供用户选择图片,
private void addPhoto()OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "JPEG(*.jpg)|*jpg";
ofd.FilterIndex = 0;
ofd.ReadOnlyChecked = false;
if (ofd.ShowDialog() == DialogResult.OK)string photoPathCurrent = ofd.FileName;//获得图片绝对路径
this.pictureBox1.Image = Image.FromFile(photoPathCurrent);
//判断图片是否符合要求
if (this.pictureBox1.Image.Width <= 145 && this.pictureBox1.Image.Width 110
&& this.pictureBox1.Image.Height <= 140 && this.pictureBox1.Image.Height 100)elseMessageBox.Show("您添加的图片不符合要求:宽110-140,高100-135,请重新添加","提示");
photoPath ="";
this.pictureBox1.Image = global ::学生党员信息管理系统.Properties.Resources.系统默认相片; 参考技术B 好孤独美女广告费干活 参考技术C 楼梯 参考技术D ????? 第5个回答 2018-11-24 。。。。。。
树莓派 python 如何将本地文件上传到指定的服务器页面上
想问一下,如何将树莓派本地的某个文件夹上传到指定的页面上。求思路,求指点,求代码
以下是单个文件的,不确定你的文件夹是什么意思,可以压缩下再上传(方法一样,调用zip命令)
我的实现方法:调用终端的curl,以下为代码平片段,实现的功能是上传log文件到服务器,供参考:
def post_log(self, post_url, del_source_file=True):'''
post log to log server
'''
if self.log_path:
command = "curl -s -F log=@0 1".format(self.log_path, post_url)
return_str = os.popen(command).read()
logging.debug(return_str)
# print return_str
if return_str == "success":
if del_source_file:
del_command = "sudo rm 0".format(self.log_path)
os.system(del_command)
return True
else:
return False
return False追问
我想将树莓派客户端本地的文件夹或zip文件都可以,上传到URL上。
追答你先在终端利用 curl实现该功能 再将其用python组装即可
比如我的代码中的表示,你可能需要去查阅一下curl的用法。
这只是其中一种可以实现的方法,你也可以尝试下其他方法
以上是关于在树莓派拍照如何将照片存在指定文件夹的主要内容,如果未能解决你的问题,请参考以下文章