在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C# 图片管理工具源码(读取文件夹图片并显示图片属性)

C# 图片管理工具源码(读取文件夹图片并显示图片属性)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.67M
  • 下载次数:99
  • 浏览次数:1936
  • 发布时间:2017-06-28
  • 实例类别:C#语言基础
  • 发 布 人:crazycode
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 图片 C# 文件 c 源码

实例介绍

【实例简介】

【实例截图】

【核心代码】

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using Microsoft.Win32;
using System.Runtime.InteropServices;
using System.Drawing.Imaging;

namespace PictureManage
{
    public partial class frmMain : Form
    {
        public frmMain()
        {
            InitializeComponent();
        }

        #region 自定义方法
        public int Pindex;
        public string TPath()
        {
            string TemporaryPath;
            TemporaryPath = Application.StartupPath.ToString();
            TemporaryPath = TemporaryPath.Substring(0, TemporaryPath.LastIndexOf("\\"));
            TemporaryPath = TemporaryPath.Substring(0, TemporaryPath.LastIndexOf("\\"));
            TemporaryPath  = @"\TemporaryFolder";
            return TemporaryPath;
        }

        public void ToolStatusUnable()
        {
            contextMenuStrip1.Enabled = false;
            设为桌面背景ToolStripMenuItem1.Enabled = false;
            转换为ToolStripMenuItem.Enabled = false;
            删除ToolStripMenuItem1.Enabled = false;
            重命名ToolStripMenuItem1.Enabled = false;
            另存为ToolStripMenuItem1.Enabled = false;
            toolStripButton2.Enabled = false;
            toolStripButton3.Enabled = false;
            toolStripButton4.Enabled = false;
            打印ToolStripMenuItem1.Enabled = false;
            图片特效ToolStripMenuItem.Enabled = false;
            图片调节ToolStripMenuItem.Enabled = false;
            toolStripButton5.Enabled = false;
            toolStripButton6.Enabled = false;
            图片文字ToolStripMenuItem.Enabled = false;
            toolStripButton7.Enabled = false;
        }

        public void ToolStatusEnable()
        {
            contextMenuStrip1.Enabled = true;
            设为桌面背景ToolStripMenuItem1.Enabled = true;
            转换为ToolStripMenuItem.Enabled = true;
            删除ToolStripMenuItem1.Enabled = true;
            重命名ToolStripMenuItem1.Enabled = true;
            另存为ToolStripMenuItem1.Enabled = true;
            toolStripButton2.Enabled = true;
            toolStripButton3.Enabled = true;
            toolStripButton4.Enabled = true;
            打印ToolStripMenuItem1.Enabled = true;
            图片特效ToolStripMenuItem.Enabled = true;
            图片调节ToolStripMenuItem.Enabled = true;
            toolStripButton5.Enabled = true;
            toolStripButton6.Enabled = true;
            图片文字ToolStripMenuItem.Enabled = true;
            toolStripButton7.Enabled = true;
        }
        #endregion

        #region 调用API
        [DllImport("user32.dll",EntryPoint="SystemParametersInfoA")]
        static extern Int32 SystemParametersInfo(Int32 uAction,Int32 uParam,string lpvparam,Int32 fuwinIni);
        private const int SPI_SETDESKWALLPAPER=20;
        #endregion

        #region 窗体加载
        private void frmMain_Load(object sender, EventArgs e)
        {
            tsslDate.Text = DateTime.Now.ToString();
            DirectoryInfo DInfo = new DirectoryInfo(TPath());
            FileSystemInfo[] FSInfo = DInfo.GetFileSystemInfos();
            for (int i = 0; i < FSInfo.Length; i  )
            {
                try
                {
                    FileInfo FInfo = new FileInfo(TPath()   "\\"   FSInfo[i].ToString());
                    FInfo.Delete();
                }
                catch
                { }
            }
            if (listBox1.Items.Count == 0)
            {
                ToolStatusUnable();
            }
        }
      
        private void frmMain_Activated_1(object sender, EventArgs e)
        {
            if (listBox1.Items.Count != 0)
            {
                listBox1_SelectedIndexChanged_1(sender,e);
            }
        }
        #endregion

        #region 工具栏
        string PPath;
        public string sum;
        private void toolStripButton1_Click(object sender, EventArgs e)//工具栏中的“打开”
        {
            if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
            {
                listBox1.Items.Clear();
                PPath = folderBrowserDialog1.SelectedPath;
                DirectoryInfo DInfo = new DirectoryInfo(PPath);
                FileSystemInfo[] FSInfo = DInfo.GetFileSystemInfos();
                for (int i = 0; i < FSInfo.Length; i  )
                {
                    string FileType = FSInfo[i].ToString().Substring(FSInfo[i].ToString().LastIndexOf(".")   1, (FSInfo[i].ToString().Length - FSInfo[i].ToString().LastIndexOf(".") - 1));
                    FileType = FileType.ToLower();
                    if (FileType == "jpg" || FileType == "png" || FileType == "bmp" || FileType == "gif" || FileType == "jpeg")
                    {
                        listBox1.Items.Add(FSInfo[i].ToString());
                    }
                }
                sum = listBox1.Items.Count.ToString();
            }
        }     
   
        private void toolStripButton2_Click(object sender, EventArgs e)//刷新按钮
        {
            if (listBox1.Items.Count == 0)
            {
                toolStripButton2.Enabled = false;
            }
            else
            {
                toolStripButton2.Enabled = true;
                listBox1.Items.Clear();
                pictureBox1.Image = null;
                DirectoryInfo DInfo = new DirectoryInfo(PPath);
                FileSystemInfo[] FSInfo = DInfo.GetFileSystemInfos();
                for (int i = 0; i < FSInfo.Length; i  )
                {
                    string FileType = FSInfo[i].ToString().Substring(FSInfo[i].ToString().LastIndexOf(".")   1, (FSInfo[i].ToString().Length - FSInfo[i].ToString().LastIndexOf(".") - 1));
                    FileType = FileType.ToLower();
                    if (FileType == "jpg" || FileType == "png" || FileType == "bmp" || FileType == "gif" || FileType == "jpeg")
                    {
                        listBox1.Items.Add(FSInfo[i].ToString());
                    }
                }
                ToolStatusUnable();
            }
        }
        private void toolStripButton3_Click(object sender, EventArgs e)
        {
            打印ToolStripMenuItem_Click(sender,e);
        }
        private void 状态栏ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (状态栏ToolStripMenuItem.CheckState == CheckState.Checked)
            {
                状态栏ToolStripMenuItem.CheckState = CheckState.Unchecked;
                statusStrip1.Visible = false;
            }
            else
            {
                状态栏ToolStripMenuItem.CheckState = CheckState.Checked;
                statusStrip1.Visible = true;
            }
        }

        private void 工具栏ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (工具栏ToolStripMenuItem.CheckState == CheckState.Checked)
            {
                工具栏ToolStripMenuItem.CheckState = CheckState.Unchecked;
                toolStrip1.Visible = false;
            }
            else
            {
                工具栏ToolStripMenuItem.CheckState = CheckState.Checked;
                toolStrip1.Visible = true;
            }
        }
        private void 图片信息ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (图片信息ToolStripMenuItem.CheckState == CheckState.Checked)
            {
                图片信息ToolStripMenuItem.CheckState = CheckState.Unchecked;
                button1.Visible = false;
            }
            else
            {
                图片信息ToolStripMenuItem.CheckState = CheckState.Checked;
                button1.Visible = true;
            }
        }       
        private void toolStripButton4_Click(object sender, EventArgs e)
        {
            删除ToolStripMenuItem_Click(sender, e);
        }
        private void toolStripButton5_Click(object sender, EventArgs e)//工具栏“向上”
        {
            try
            {
                if (listBox1.SelectedIndex != 0)
                {
                    listBox1.SetSelected(listBox1.SelectedIndex - 1, true);
                }
            }
            catch
            { }
        }
        private void toolStripButton6_Click(object sender, EventArgs e)//工具栏“向下”
        {
            try
            {
                if (listBox1.SelectedIndex < listBox1.Items.Count - 1)
                {
                    listBox1.SetSelected(listBox1.SelectedIndex   1, true);
                }
            }
            catch
            { }
        }
        private void 图片特效ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (listBox1.Items.Count != 0)
            {
                frmSpecialEfficacy special = new frmSpecialEfficacy();
                special.ig = pictureBox1.Image;
                special.ShowDialog();
            }
        }

        private void toolStripButton7_Click(object sender, EventArgs e)//旋转
        {
            Image myImage = pictureBox1.Image;
            myImage.RotateFlip(RotateFlipType.Rotate90FlipXY);
            pictureBox1.Image = myImage;
        }
        #endregion

        #region 常用事件
        private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        {
            int printWidth = printDocument1.DefaultPageSettings.PaperSize.Width;
            int printHeight = printDocument1.DefaultPageSettings.PaperSize.Height;
            if (Convert.ToInt32(PictureWidth) <= printWidth)
            {
                float x = (printWidth - Convert.ToInt32(PictureWidth)) / 2;
                float y=(printHeight-Convert.ToInt32(Pictureheight))/2;
                e.Graphics.DrawImage(Image.FromFile(FPath), x, y, Convert.ToInt32(PictureWidth), Convert.ToInt32(Pictureheight));
            }
            else
            {
                if (Convert.ToInt32(PictureWidth) > Convert.ToInt32(Pictureheight))
                {
                    Bitmap bitmap = (Bitmap)Bitmap.FromFile(FPath);
                    bitmap.RotateFlip(RotateFlipType.Rotate90FlipXY);
                    PictureBox pb = new PictureBox();
                    pb.Image = bitmap;
                    Single a = printWidth / Convert.ToSingle(Pictureheight);
                    e.Graphics.DrawImage(pb.Image, 0, 0, Convert.ToSingle(Pictureheight) * a,  Convert.ToSingle(PictureWidth)*a);
                }
                else
                {
                    Single a = printWidth / Convert.ToSingle(PictureWidth);
                    e.Graphics.DrawImage(Image.FromFile(FPath), 0, 0, Convert.ToSingle(PictureWidth) * a, Convert.ToSingle(Pictureheight) * a);
                }

            }
        }
        private void pictureBox1_Click(object sender, EventArgs e)
        {
            if (pictureBox1.Image != null)
            {
                frmPictureMax pictureMax = new frmPictureMax();
                pictureMax.FPath = FPath;
                pictureMax.PictureWidth = PictureWidth;
                pictureMax.Pictureheight = Pictureheight;
                pictureMax.SelectFileSize = SelectFileSize;
                pictureMax.ShowDialog();
            }
        }

        public Bitmap image1;
        public string FPath;
        public string PictureWidth;
        public string Pictureheight;
        public double SelectFileSize;
        private void listBox1_SelectedIndexChanged_1(object sender, EventArgs e)
        {
            try
            {
                if (listBox1.Items.Count != 0)
                {
                    ToolStatusEnable();
                }
                pictureBox1.BackColor = Color.Black;

                string FName = listBox1.SelectedItem.ToString();
                if (PPath.Length == 4)
                {
                    FPath = PPath   FName;
                }
                else
                {
                    FPath = PPath   "\\"   FName;
                }

                DirectoryInfo DInfo = new DirectoryInfo(TPath());
                FileSystemInfo[] FSInfo = DInfo.GetFileSystemInfos();
                for (int i = 0; i < FSInfo.Length; i  )
                {
                    try
                    {
                        FileInfo FInfo = new FileInfo(TPath()   "\\"   FSInfo[i].ToString());
                        FInfo.Delete();
                    }
                    catch
                    { }
                }

                string newFilePath;
                string SFileType = FPath.Substring(FPath.LastIndexOf(".")   1, (FPath.Length - FPath.LastIndexOf(".") - 1));
                FileInfo finfos = new FileInfo(TPath()   "\\"   FName);
                if (finfos.Exists)
                {
                    newFilePath = TPath()   "\\"   FName;
                }
                else
                {
                    File.Copy(FPath, TPath()   "\\"   FName, true);
                    newFilePath = TPath()   "\\"   FName;
                }
                pictureBox1.Image = Image.FromFile(newFilePath);
                image1 = new Bitmap(newFilePath);
                PictureWidth = image1.Width.ToString();
                Pictureheight = image1.Height.ToString();
                FileInfo finfo = new FileInfo(newFilePath);
                string FileSize = finfo.Length.ToString();
                SelectFileSize = Convert.ToDouble(FileSize) / 1024 / 1024;
                button1.Text = "图片大小:"   SelectFileSize.ToString("F")   "M   "   "分辨率:"   PictureWidth   "×"   Pictureheight;
                image1.Dispose();
                toolStripStatusLabel3.Text = sum;
                toolStripStatusLabel1.Text = Convert.ToString(listBox1.SelectedIndex   1);
                toolStripStatusLabel2.Visible = true;
                //contextMenuStrip1.Enabled = true;
                ToolStatusEnable();
                Pindex = listBox1.SelectedIndex;//当前选项索引值

            }
            catch
            {}
        }
        private void timer1_Tick(object sender, EventArgs e)
        {
            tsslDate.Text = DateTime.Now.ToString();
        }
        #endregion

        #region 文件菜单

        private void 更改目录ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            toolStripButton1_Click(sender, e);
        }

        private void 刷新ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            toolStripButton2_Click(sender, e);
        }

        private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }
        private void 设为桌面背景ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            设为桌面背景ToolStripMenuItem_Click(sender,e);
        }

        private void 删除ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            删除ToolStripMenuItem_Click(sender, e);
        }

        private void 重命名ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            重命名ToolStripMenuItem_Click(sender, e);
        }

        private void 打印ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            打印ToolStripMenuItem_Click(sender, e);
        }

        private void bMPToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fName = FPath.Substring(FPath.LastIndexOf("\\")   1, (FPath.LastIndexOf(".") - FPath.LastIndexOf("\\") - 1));
            string Opath = FPath.Remove(FPath.LastIndexOf("\\"));
            string Npath;
            if (Opath.Length == 4)
            {
                Npath = Opath;
            }
            else
            {
                Npath = Opath   "\\";
            }
            Bitmap bt = new Bitmap(pictureBox1.Image);
            bt.Save(Npath   fName   ".bmp", ImageFormat.Bmp);
            FileInfo fi = new FileInfo(FPath);
            fi.Delete();
            toolStripButton2_Click(sender, e);

        }

        private void gIFToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fName = FPath.Substring(FPath.LastIndexOf("\\")   1, (FPath.LastIndexOf(".") - FPath.LastIndexOf("\\") - 1));
            string Opath = FPath.Remove(FPath.LastIndexOf("\\"));
            string Npath;
            if (Opath.Length == 4)
            {
                Npath = Opath;
            }
            else
            {
                Npath = Opath   "\\";
            }
            Bitmap bt = new Bitmap(pictureBox1.Image);
            bt.Save(Npath   fName   ".gif", ImageFormat.Gif);
            FileInfo fi = new FileInfo(FPath);
            fi.Delete();
            toolStripButton2_Click(sender, e);
        }

        private void jPGToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fName = FPath.Substring(FPath.LastIndexOf("\\")   1, (FPath.LastIndexOf(".") - FPath.LastIndexOf("\\") - 1));
            string Opath = FPath.Remove(FPath.LastIndexOf("\\"));
            string Npath;
            if (Opath.Length == 4)
            {
                Npath = Opath;
            }
            else
            {
                Npath = Opath   "\\";
            }
            Bitmap bt = new Bitmap(pictureBox1.Image);
            bt.Save(Npath   fName   ".Jpeg", ImageFormat.Jpeg);
            FileInfo fi = new FileInfo(FPath);
            fi.Delete();
            toolStripButton2_Click(sender, e);
        }

        private void pNGToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fName = FPath.Substring(FPath.LastIndexOf("\\")   1, (FPath.LastIndexOf(".") - FPath.LastIndexOf("\\") - 1));
            string Opath = FPath.Remove(FPath.LastIndexOf("\\"));
            string Npath;
            if (Opath.Length == 4)
            {
                Npath = Opath;
            }
            else
            {
                Npath = Opath   "\\";
            }
            Bitmap bt = new Bitmap(pictureBox1.Image);
            bt.Save(Npath   fName   ".Png", ImageFormat.Png);
            FileInfo fi = new FileInfo(FPath);
            fi.Delete();
            toolStripButton2_Click(sender, e);
        }

        private void 图片调节ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmPicAdjust picadjust = new frmPicAdjust();
            picadjust.ig = pictureBox1.Image;
            picadjust.PicOldPath = FPath;
            picadjust.ShowDialog();
        }
        private void 退出CToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (MessageBox.Show("退出系统?","提示",MessageBoxButtons.OKCancel,MessageBoxIcon.Information) == DialogResult.OK)
            {
                Application.Exit();
            }
        }

        private void 幻灯片放映ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (folderBrowserDialog2.ShowDialog() == DialogResult.OK)
            {
                string path = folderBrowserDialog2.SelectedPath;
                frmSlide slide = new frmSlide();
                slide.Ppath = path;
                slide.ShowDialog();
            }
        }

        #endregion

        #region 右键菜单
        private void 复制ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                string path = FPath.Remove(2, 1);
                System.Collections.Specialized.StringCollection files = new System.Collections.Specialized.StringCollection();
                files.Add(path);
                Clipboard.SetFileDropList(files);
            }
            catch(Exception ex)
            {
                MessageBox.Show(ex.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }

        private void 删除ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {                                                                                                                                                                                        
                File.Delete(FPath);
                toolStripButton2_Click(sender, e);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }

        private void 刷新ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            toolStripButton2_Click(sender, e);
        }
        private void 重命名ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fName = FPath.Substring(FPath.LastIndexOf("\\")   1, (FPath.LastIndexOf(".") - FPath.LastIndexOf("\\") - 1));
            string fType = FPath.Substring(FPath.LastIndexOf(".")   1, (FPath.Length - FPath.LastIndexOf(".") - 1));
            frmRename rename = new frmRename();
            rename.filename = fName;
            rename.filepath = FPath;
            rename.filetype = fType;
            rename.ShowDialog();
        }

        private void 打印ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            printPreviewDialog1.Document = printDocument1;
            printPreviewDialog1.ShowDialog();
        }

        private void 设为桌面背景ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //获取指定图片的扩展名
            string SFileType = FPath.Substring(FPath.LastIndexOf(".")   1, (FPath.Length - FPath.LastIndexOf(".") - 1));
            //将扩展名转换成小写
            SFileType = SFileType.ToLower();
            //获取文件名
            string SFileName = FPath.Substring(FPath.LastIndexOf("\\")   1, (FPath.LastIndexOf(".") - FPath.LastIndexOf("\\") - 1));
            //如果图片的类型是bmp则调用API中的方法将其设置为桌面背景
            if (SFileType == "bmp")
            {
                SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, FPath, 1);
            }
            else
            {
                string SystemPath = Environment.SystemDirectory;//获取系统路径
                string path = SystemPath   "\\"   SFileName   ".bmp";
                FileInfo fi = new FileInfo(path);
                if (fi.Exists)
                {
                    fi.Delete();
                    PictureBox pb = new PictureBox();
                    pb.Image = Image.FromFile(FPath);
                    pb.Image.Save(SystemPath   "\\"   SFileName   ".bmp", ImageFormat.Bmp);
                }
                else
                {
                    PictureBox pb = new PictureBox();
                    pb.Image = Image.FromFile(FPath);
                    pb.Image.Save(SystemPath   "\\"   SFileName   ".bmp", ImageFormat.Bmp);
                }
                SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, path, 1);
            }
        }

        private void 另存为ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                saveFileDialog1.Filter = "BMP|*.bmp|JPEG|*.jpeg|GIF|*.gif|PNG|*.png";
                if (saveFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    string picPath = saveFileDialog1.FileName;
                    string picType = picPath.Substring(picPath.LastIndexOf(".")   1, (picPath.Length - picPath.LastIndexOf(".") - 1));
                    switch (picType)
                    {
                        case "bmp":
                            Bitmap bt = new Bitmap(FPath);
                            bt.Save(picPath, ImageFormat.Bmp); break;
                        case "jpeg":
                            Bitmap bt1 = new Bitmap(FPath);
                            bt1.Save(picPath, ImageFormat.Jpeg); break;
                        case "gif":
                            Bitmap bt2 = new Bitmap(FPath);
                            bt2.Save(picPath, ImageFormat.Gif); break;
                        case "png":
                            Bitmap bt3 = new Bitmap(FPath);
                            bt3.Save(picPath, ImageFormat.Png); break;
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
        private void 另存为ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            另存为ToolStripMenuItem_Click(sender, e);
        }
        #endregion

        private void 图片文字ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (pictureBox1.Image != null)
            {
                frmWater water = new frmWater();
                water.ig = pictureBox1.Image;
                water.FPath = FPath;
                water.ShowDialog();
            } 
        }

    }
}

标签: 图片 C# 文件 c 源码

实例下载地址

C# 图片管理工具源码(读取文件夹图片并显示图片属性)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警