ディレクトリ内の画像ファイルを連続表示するグラフィックビューワ6

.NET Framework コンピュータ
.NET Framework

画像の高さの半分のサイズで1つの画像を上中下の順番に部分表示する機能を追加。

コンパイル準備

ソースコード

using System;
using System.Windows.Forms;
using System.Drawing;

using System.Collections.Generic;
using System.Linq;

using System.IO;
using System.Text.RegularExpressions;

using System.IO.Compression;

using System.Threading;
using System.Threading.Tasks;


// 
// ディレクトリ内の画像ファイルを連続表示するグラフィックビューワー
// 
// 履歴
// ・Zipファイル内の画像ファイルに対応
// ・見開き表示
// ・プレイリスト機能
// ・画像データのキャッシュ機能
// ・半分表示

// コンパイル
// csc /t:winexe SlideView.cs /r:System.IO.Compression.dll /r:System.IO.Compression.FileSystem.dll


namespace SlideView
{
    class ImageItem
    {
        public string Name = "";
        public string Location = "";
    }
    
    class Form1 : Form
    {
        Dictionary<string, Image> ImageCache = new Dictionary<string, Image>();

        enum EViewMode { Single, Dual, Half, };
        int HalfPosition = 0; // 0...上 1...中央 2...下

        EViewMode ViewMode = EViewMode.Dual;
        List<ImageItem> ImageItems = new List<ImageItem>();
        int ImagePosition = -1;
        bool IsBack = false;

        PictureBox PictureBox1 = new PictureBox
        {
            Dock = DockStyle.Fill,
            SizeMode = PictureBoxSizeMode.Zoom,
        };

        Panel SidePanel = new FlowLayoutPanel
        {
            Padding = new Padding(8),
            Dock = DockStyle.Left,
        };
        Panel ViewPanel = new Panel
        {
            Dock = DockStyle.Fill,
        };
        
        Label PlayListLabel = new Label
        {
            Text = "PlayList",
            AutoSize = true,
        };
        ListView PlayList = new ListView
        {
            Name = "PlayList",
            View = View.List,
            AllowDrop = true,
            MultiSelect = false,
            Width = 200,
            Height = 200,
        };
        int HalfPositionMin = 0;
        int HalfPositionMax = 2;
        void MoveNext()
        {
            if (ImagePosition < 0) return;

            if (ViewMode == EViewMode.Half && HalfPosition < HalfPositionMax)
            {
                HalfPosition = HalfPosition + 1;
                ShowPicture();
                return;
            }
            HalfPosition = HalfPositionMin;

            if (ImagePosition == (ImageItems.Count() - 1))
            {
                MoveNextBook();
                return;
            }

            ImagePosition = ImagePosition + 1;
            ShowPicture();
        }
        void MovePrevious()
        {
            if (ImagePosition < 0) return;
            
            if (ViewMode == EViewMode.Half && HalfPosition > HalfPositionMin)
            {
                HalfPosition = HalfPosition - 1;
                ShowPicture();
                return;
            }
            HalfPosition = HalfPositionMax;

            if (ImagePosition == 0)
            {
                MovePreviousBook();
                return;
            }

            ImagePosition = ImagePosition - 1;

            if (ViewMode == EViewMode.Single || ViewMode == EViewMode.Half)
            {
                ShowPicture();
                return;
            }
            if (ViewMode == EViewMode.Dual)
            {
                if (ImagePosition == 0)
                {
                    ShowPicture();
                    return;
                }

                ImagePosition = ImagePosition - 1;
                if (ImagePosition == 0)
                {
                    ShowPicture();
                    return;
                }

                ImagePosition = ImagePosition - 1;
                if (ImagePosition == 0)
                {
                    ShowPicture();
                    return;
                }
                
                ShowPicture();
                return;
            }

        }
        void PictureBox1_MouseDown(Object s, MouseEventArgs e)
        {
            if (ImagePosition < 0) return;

            if (e.Button == MouseButtons.Right)
            {
                MovePrevious();
            }
            if (e.Button == MouseButtons.Left)
            {
                MoveNext();
            }
        }        

        static private Object lockObj = new Object();
        Image GetImageFromCache(string location, string name)
        {
            string key = Path.Combine(location, name);

            if (ImageCache.ContainsKey(key))
            {
                return ImageCache[key];
            }

            Image img = null;
            if (Directory.Exists(location))
            {
                string path = Path.Combine(location, name);
                using (var fs = new FileStream(path, FileMode.Open, FileAccess.Read))
                {
                    img = Image.FromStream(fs);
                }
            }
            else if (File.Exists(location))
            {
                // Zipアーカイブ
                using (var zip = ZipFile.OpenRead(location))
                {
                    var entry = zip.GetEntry(name);
                    img = Image.FromStream(entry.Open());
                }
            }

            lock(lockObj)
            {
                ImageCache[key] = img;
            }
            return img;
        }
        Image GetImage(int possition)
        {
            string location = ImageItems[possition].Location;
            string name = ImageItems[possition].Name;

            return GetImageFromCache(location, name);
        }
        Image JoinImage(Image l, Image r)
        {
            int h = l.Height > r.Height ? l.Height : r.Height;
            int w = l.Width + r.Width;

            Bitmap bmp = new Bitmap(w, h);
            using(var g = Graphics.FromImage(bmp))
            {
                var ls = new Rectangle(0, 0, l.Width, l.Height);
                g.DrawImage(l, ls, ls, GraphicsUnit.Pixel);
                var rs = new Rectangle(0, 0, r.Width, r.Height);
                var rd = new Rectangle(l.Width, 0, r.Width, r.Height);
                g.DrawImage(r, rd, rs, GraphicsUnit.Pixel);
            }

            return bmp;
        }
        Image HalfImage(Image img, int position)
        {
            int h = img.Height / 2;
            int w = img.Width;
            int y = 0;
            
            if (position == 1)
            {
                y = h / 2;
            }
            if (position == 2)
            {
                y = h;
            }

            Bitmap bmp = new Bitmap(w, h);
            using(var g = Graphics.FromImage(bmp))
            {
                var s = new Rectangle(0, 0, w, h);
                var d = new Rectangle(0, y, w, h);
                g.DrawImage(img, s, d, GraphicsUnit.Pixel);
            }

            return bmp;
        }
        void ShowPicture()
        {
            if (ImagePosition < 0) return;

            Image img = GetImage(ImagePosition);

            // 半分表示を最初に処理
            if (ViewMode == EViewMode.Half)
            {
                PictureBox1.Image = HalfImage(img, HalfPosition);
                return;
            }

            if (ImagePosition == 0)
            {
                // 表紙(先頭ページ)は単ページ
                PictureBox1.Image = img;
                return;
            }

            if (ImagePosition == (ImageItems.Count() - 1))
            {
                // 最終ページ
                PictureBox1.Image = img;
                return;
            }
            if (ViewMode == EViewMode.Single)
            {
                // 単ページモード
                PictureBox1.Image = img;
                return;
            }
            if (ViewMode == EViewMode.Dual)
            {
                // 見開きモード

                // 左ページ読込
                Image img2 = GetImage(ImagePosition+1);
                PictureBox1.Image = JoinImage(img2, img);
                
                ImagePosition = ImagePosition + 1;
            }
        }
        enum PathType { None, Img, Dir, Zip };
        void SetNewLocation(string path)
        {
            string location = "";

            PathType pathType = PathType.None;

            if (File.Exists(path))
            {
                if (Path.GetExtension(path).ToUpper() == ".ZIP")
                {
                    location = path;
                    pathType = PathType.Zip;
                }
                else
                {
                    location = Path.GetDirectoryName(path);
                    pathType = PathType.Img;
                }
            }
            else if(Directory.Exists(path))
            {
                location = path;
                pathType = PathType.Dir;
            }
            else return;

            ImageItems.Clear();
            ImagePosition = 0;

            if (pathType == PathType.Img || pathType == PathType.Dir)
            {
                var files = Directory.EnumerateFiles(
                    location, "*", System.IO.SearchOption.TopDirectoryOnly);
                
                ImagePosition = 0;
                foreach(string f in files)
                {
                    string ext = Path.GetExtension(f).ToUpper();

                    if (!Regex.IsMatch(ext, @"\.(PNG|JPEG|JPG|BMP)"))
                        continue;

                    string name = Path.GetFileName(f);
                    ImageItems.Add(new ImageItem
                    {
                        Name = name,
                        Location = location,
                    });

                    Task task1 = Task.Run(()=>GetImageFromCache(location, name));

                    if (f == path)
                    {
                        ImagePosition = ImageItems.Count() - 1;
                    }
                }
            }
            else if (pathType == PathType.Zip)
            {
                using (var zip = ZipFile.OpenRead(location))
                {
                    foreach(var x in zip.Entries)
                    {
                        string ext = Path.GetExtension(x.FullName).ToUpper();

                        if (!Regex.IsMatch(ext, @"\.(PNG|JPEG|JPG|BMP)"))
                            continue;
                        
                        string name = x.FullName;
                        ImageItems.Add(new ImageItem
                        {
                            Name = x.FullName,
                            Location = location,
                        });
                        Task task1 = Task.Run(()=>GetImageFromCache(location, name));
                    }
                }
            }
            if (ImageItems.Count() == 0)
            {
                ImagePosition = -1;
                return;
            }
            if (IsBack == true)
            {
                var c = ImageItems.Count();
                ImagePosition = c - 1;
                if (ViewMode == EViewMode.Dual &&  c > 2 && (c % 2) == 1)
                {
                    ImagePosition = ImagePosition - 1;
                }
                IsBack = false;
            }
            ShowPicture();
        }
        void ChangeScreenMode()
        {
            if (this.WindowState == FormWindowState.Normal)
            {
                // フルスクリーン
                SidePanel.Visible = false;        
                this.FormBorderStyle = FormBorderStyle.None;
                this.WindowState = FormWindowState.Maximized;
            }
            else
            {
                // ウィンドウ
                SidePanel.Visible = true;        
                this.FormBorderStyle = FormBorderStyle.Sizable;
                this.WindowState = FormWindowState.Normal;             
            }
        }
        // フォームロードイベント
        void Form1_Load(Object s, EventArgs e)
        {
            this.Size = new Size(800, 450);
        }
        void Form1_KeyDown(Object s, KeyEventArgs e)
        {
            switch (e.KeyData)
            {
                case (Keys.F11):
                    ChangeScreenMode();
                    break;
                case (Keys.Control | Keys.N):
                    PlayList.Clear();
                    break;
                case (Keys.S):
                    ViewMode = EViewMode.Single;
                    ShowPicture();
                    break;
                case (Keys.D):
                    ViewMode = EViewMode.Dual;
                    ShowPicture();
                    break;
                case (Keys.H):
                    ViewMode = EViewMode.Half;
                    ShowPicture();
                    break;
                case (Keys.Delete):
                    foreach (ListViewItem x in PlayList.SelectedItems)
                    {
                        PlayList.Items.Remove(x);
                    }
                    break;
            }
        }


        void PlayList_ItemDrag(Object s, ItemDragEventArgs e)
        {
            PlayList.DoDragDrop((ListViewItem)e.Item, DragDropEffects.Move);
        }
        void PlayList_DragEnter(Object s, DragEventArgs e)
        {
            // ファイルドロップ
            if(e.Data.GetDataPresent(DataFormats.FileDrop))
            {
                e.Effect = DragDropEffects.Copy;
            }
            // リストビュー内
            if(e.Data.GetDataPresent(typeof(ListViewItem)))
            {
                e.Effect = DragDropEffects.Move;
            }
        }
        
        void PlayList_DragDrop(Object s, DragEventArgs e)
        {
            // ファイルドロップ
            if(e.Data.GetDataPresent(DataFormats.FileDrop))
            {
                string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
                for (int i=0; i < files.Length; i++)
                {
                    string fullPath = files[i];
                    string ext = Path.GetExtension(fullPath).ToUpper();

                    if (File.Exists(fullPath))
                    {
                        if (Regex.IsMatch(ext, @"\.(PNG|JPEG|JPG|BMP)"))
                        {
                            fullPath = Path.GetDirectoryName(fullPath);
                        }
                        else if (!Regex.IsMatch(ext, @"\.ZIP"))
                        {
                            continue;
                        }
                    }

                    string name = Path.GetFileName(fullPath);
                    var item = new ListViewItem(name, i);
                    item.SubItems.Add(fullPath);
                    PlayList.Items.Add(item);
                    item.Selected = true;
                }
            }
            // リストビュー内の移動
            if(e.Data.GetDataPresent(typeof(ListViewItem)))
            {
                
                var dragItem = (ListViewItem)e.Data.GetData(typeof(ListViewItem));
                Point p = PlayList.PointToClient(new Point(e.X, e.Y));
                var currentItem = PlayList.GetItemAt(p.X, p.Y);
                int currentIndex = PlayList.Items.IndexOf(currentItem);

                if (currentIndex < 0) return;

                if (currentIndex > dragItem.Index) currentIndex++;

                var newItem = PlayList.Items.Insert(currentIndex, dragItem.Text);
                newItem.SubItems.Add(dragItem.SubItems[1].Text);
                newItem.Selected = true;

                
                PlayList.Items.Remove(dragItem);
            }
        }
        void PlayList_SelectedIndexChanged(Object s, EventArgs e)
        {
            var x = PlayList.SelectedItems;

            if (x.Count == 0) return;
            SetNewLocation(x[0].SubItems[1].Text);
        }
        void MoveNextBook()
        {
            var count = PlayList.Items.Count;
            if (count == 0) return;

            var x = PlayList.SelectedItems;
            if (x.Count == 0) return;

            int index = PlayList.Items.IndexOf(x[0]);

            if (index == (PlayList.Items.Count - 1)) return;

            HalfPosition = HalfPositionMin;
            PlayList.Items[index+1].Selected = true;
        }
        void MovePreviousBook()
        {
            var count = PlayList.Items.Count;
            if (count == 0) return;

            var x = PlayList.SelectedItems;
            if (x.Count == 0) return;

            int index = PlayList.Items.IndexOf(x[0]);

            if (index == 0) return;

            HalfPosition = HalfPositionMax;
            IsBack = true;
            PlayList.Items[index-1].Selected = true;
        }
        Form1()
        {
            this.KeyPreview = true;

            PlayList.Columns.Add(new ColumnHeader{Text = "Name"});
            PlayList.Columns.Add(new ColumnHeader{Text = "FullPath"});
            PlayList.Columns[0].Width = -1;

            this.Controls.Add(ViewPanel);
            this.Controls.Add(SidePanel);
            SidePanel.Controls.Add(PlayListLabel);
            SidePanel.Controls.Add(PlayList);
            ViewPanel.Controls.Add(PictureBox1);

            this.Load += Form1_Load;
            this.KeyDown += Form1_KeyDown;
            PictureBox1.MouseDown += PictureBox1_MouseDown;

            PlayList.ItemDrag += PlayList_ItemDrag;
            PlayList.DragEnter += PlayList_DragEnter;
            PlayList.DragDrop += PlayList_DragDrop;
            PlayList.SelectedIndexChanged += PlayList_SelectedIndexChanged;
        }
        [STAThread]
        static void Main()
        {
            Application.Run(new Form1());
        }
    }// class
}// ns

コンパイル

csc /t:winexe SlideView.cs /r:System.IO.Compression.dll /r:System.IO.Compression.FileSystem.dll

機能

  • 「S」キー…単ページ表示
  • 「D」キー…両開き表示
  • 「H」キー…半分表示

コメント