ImageUtility 1.3.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ImageUtility --version 1.3.2
NuGet\Install-Package ImageUtility -Version 1.3.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ImageUtility" Version="1.3.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ImageUtility --version 1.3.2
#r "nuget: ImageUtility, 1.3.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ImageUtility as a Cake Addin
#addin nuget:?package=ImageUtility&version=1.3.2

// Install ImageUtility as a Cake Tool
#tool nuget:?package=ImageUtility&version=1.3.2
public partial class ImageUtilityTester : Form
{
    public ImageUtilityTester()
    {
        Action<string> progress = (v) => { Console.WriteLine(v); };

        //Show dialog modeless
        FloatingImageViewer floatingImageViewer = new FloatingImageViewer("Image")
        {
            TopMost = true,
        };
        floatingImageViewer.ToolStripButtonPrev.Visible = floatingImageViewer.ToolStripButtonNext.Visible = false;

        ListBox lb = new ListBox() { Parent = this, Dock = DockStyle.Top, Height = 300, };
        lb.SelectedIndexChanged += (sender, e) =>
        {
            floatingImageViewer.Reset(lb.Text);
            floatingImageViewer.Title = lb.Text;
        };

        lb.ContextMenuStrip = new ContextMenuStrip();
        ToolStripMenuItem tsmiFloatingImageViewer = new ToolStripMenuItem() { Text = "Show", };
        lb.ContextMenuStrip.Items.Add(tsmiFloatingImageViewer);
        tsmiFloatingImageViewer.Click += (sender, e) =>
        {
            floatingImageViewer.Show();
        };

        PictureBoxEx pictureBoxEx = new PictureBoxEx(progress, 1.0)
        {
            Height = 400
        };

        Controls.Add(pictureBoxEx.Panel);

        Controls.Add(pictureBoxEx.ToolStrip);
        var binaryImages = new List<byte[]>();

        var imageidx = 0;
        var toolStripMenuItemMultipleImages = new ToolStripMenuItem() { Text = "Multiple images", };

        Action resetImage = () =>
        {
            pictureBoxEx.ResetImage(binaryImages[imageidx]);
            pictureBoxEx.ToolStripButtonPrev.Enabled = imageidx != 0;
            pictureBoxEx.ToolStripButtonNext.Enabled = imageidx != binaryImages.Count - 1;
        };

        Action SelectFiles = () =>
        {
            binaryImages.Clear();
            var files = ImageHelper.ShowMultipleFileSelectDialog();
            foreach (var f in files)
            {
                using (System.IO.FileStream fs = new System.IO.FileStream(f, System.IO.FileMode.Open, System.IO.FileAccess.Read))
                {
                    var data = new byte[fs.Length];
                    fs.Read(data, 0, data.Length);
                    if (ImageHelper.IsImage(data))
                    {
                        binaryImages.Add(data);
                    }
                }
            }
        };

        toolStripMenuItemMultipleImages.Click += (sender, e) =>
        {
            SelectFiles();

            if (binaryImages.Count > 0)
            {
                imageidx = 0;
                resetImage();
            }
        };

        pictureBoxEx.ToolStripButtonPrev.Click += (sender, e) =>
          {
              if (imageidx > 0)
              {
                  imageidx--;
                  resetImage();
              }
          };

        pictureBoxEx.ToolStripButtonNext.Click += (sender, e) =>
          {
              if (imageidx < binaryImages.Count - 1)
              {
                  imageidx++;
                  resetImage();
              }
          };

        pictureBoxEx.ToolStripMenuItemFile.DropDownItems.Add(new ToolStripSeparator());
        pictureBoxEx.ToolStripMenuItemFile.DropDownItems.Add(toolStripMenuItemMultipleImages);

        //if move magnification menu to toolStrip enable below
        //pictureBoxEx.ToolStrip.Items.Add(pictureBoxEx.ToolStripMenuItemMagnification);
        //if move rotate menu to toolStrip enable below
        //pictureBoxEx.ToolStrip.Items.Add(pictureBoxEx.ToolStripMenuItemRotate);

        Controls.Add(pictureBoxEx.ToolStrip);


        Controls.Add(pictureBoxEx.Menu);

        var toolStripMenuItemShowImageDialog = new ToolStripMenuItem() { Text = "ImageViewer", };
        pictureBoxEx.ToolStripMenuItemFile.DropDownItems.Add(new ToolStripSeparator());
        pictureBoxEx.ToolStripMenuItemFile.DropDownItems.Add(toolStripMenuItemShowImageDialog);

        toolStripMenuItemShowImageDialog.Click += (sender, e) =>
        {
            SelectFiles();
            if (binaryImages.Count > 0)
            {
                ImageViewer.ShowDialog(binaryImages, 0.3);
            }
        };

        var toolStripMenuItemShowImage = new ToolStripMenuItem() { Text = "FloatingImageViewer", };
        pictureBoxEx.ToolStripMenuItemFile.DropDownItems.Add(toolStripMenuItemShowImage);

        toolStripMenuItemShowImage.Click += (sender, e) =>
        {
            var files = ImageHelper.ShowMultipleFileSelectDialog();
            if (files.Length > 0)
            {
                lb.Items.Clear();
                lb.Items.AddRange(files);
                if (lb.Items.Count > 0)
                {
                    floatingImageViewer.Reset(lb.Items[0].ToString());
                    floatingImageViewer.Title = lb.Items[0].ToString();
                }
                floatingImageViewer.Show();
            }
        };

        StartPosition = FormStartPosition.CenterScreen;
        ClientSize = new Size(800, 600);
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.4 92 2/4/2024
1.5.3 83 1/23/2024
1.5.2 145 12/30/2023
1.5.1 118 12/8/2023
1.5.0 106 11/27/2023
1.4.6 215 4/9/2023
1.4.4.1 292 12/4/2022
1.4.4 274 12/4/2022
1.4.3 288 11/23/2022
1.4.2.4 290 11/19/2022
1.4.2.3 314 11/5/2022
1.4.2.2 309 11/3/2022
1.4.2.1 335 10/30/2022
1.4.2 325 10/29/2022
1.4.1 370 9/22/2022
1.4.0 374 9/10/2022
1.3.9.1 372 8/28/2022
1.3.9 406 7/21/2022
1.3.8 392 7/19/2022
1.3.7 417 7/17/2022
1.3.6 380 7/7/2022
1.3.5 413 6/21/2022
1.3.4 401 5/22/2022
1.3.2 420 3/26/2022
1.3.1 402 3/20/2022
1.3.0 399 3/16/2022
1.2.7 413 3/15/2022
1.2.6 401 3/13/2022
1.2.2 390 3/6/2022
1.2.1 395 3/5/2022
1.2.0 400 2/8/2022
1.1.9 404 2/7/2022
1.1.8 417 2/6/2022
1.1.7 412 1/29/2022
1.1.5 262 12/14/2021
1.1.4 262 12/8/2021
1.1.3 269 12/7/2021
1.1.1 305 11/3/2021
1.0.8 320 10/20/2021