Files
microsoft--semantic-kernel/dotnet/samples/Demos/HuggingFaceImageToText/FormMain.cs
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

221 lines
7.5 KiB
C#

// Copyright (c) Microsoft. All rights reserved.
using System.Drawing.Imaging;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.ImageToText;
namespace HuggingFaceImageTextDemo;
#pragma warning disable SKEXP0001 // Type is for evaluation purposes only and is subject to change or removal in future updates.
/// <summary>
/// Main form of the application.
/// </summary>
public partial class FormMain : Form
{
private readonly Kernel _kernel;
private readonly IImageToTextService _imageToTextService;
/// <summary>
/// Initializes a new instance of the <see cref="FormMain"/> class.
/// </summary>
public FormMain()
{
this.InitializeComponent();
this._kernel = Kernel.CreateBuilder()
.AddHuggingFaceImageToText("Salesforce/blip-image-captioning-base")
.Build();
this._imageToTextService = this._kernel.GetRequiredService<IImageToTextService>();
}
/// <summary>
/// Main form load event.
/// </summary>
/// <param name="sender">The form main.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
private void FormMain_Load(object sender, EventArgs e)
{
this.ChangeFolder();
this.Focus();
}
/// <summary>
/// Changes the folder and refreshes the images.
/// </summary>
private void ChangeFolder()
{
if (this.folderBrowserDialog1.ShowDialog() == DialogResult.OK)
{
this.lblImagesFolder.Text = $"Images folder: {this.folderBrowserDialog1.SelectedPath}";
}
if (string.IsNullOrEmpty(this.folderBrowserDialog1.SelectedPath))
{
MessageBox.Show("A folder needs to be selected.");
this.ChangeFolder();
}
else
{
this.RefreshImages();
}
}
/// <summary>
/// Refreshes the images in the flow layout panel.
/// </summary>
private void RefreshImages()
{
var imageDirectory = this.folderBrowserDialog1.SelectedPath;
var extensions = new List<string> { "*.jpg", "*.jpeg", "*.png", "*.gif", "*.bmp", "*.tiff", "*.ico", "*.svg" };
var myImagePaths = new List<string>();
foreach (var extension in extensions)
{
myImagePaths.AddRange(Directory.GetFiles(imageDirectory, extension, SearchOption.AllDirectories));
}
this.flowLayoutPanel1.Controls.Clear();
foreach (var imagePath in myImagePaths)
{
PictureBox pictureBox = new();
using var fs = new FileStream(imagePath, FileMode.Open, FileAccess.Read);
pictureBox.Image = new Bitmap(Image.FromStream(fs));
pictureBox.SizeMode = PictureBoxSizeMode.Zoom;
pictureBox.Height = 300;
pictureBox.Width = 300;
pictureBox.Click += this.PictureBoxOnClickAsync;
pictureBox.Tag = imagePath;
this.flowLayoutPanel1.Controls.Add(pictureBox);
}
}
/// <summary>
/// Handles the Click event of the PictureBox control.
/// </summary>
/// <param name="sender">The picture box.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
#pragma warning disable VSTHRD100 // Avoid async void methods
private async void PictureBoxOnClickAsync(object? sender, EventArgs e)
{
this.textBox1.Text = "Processing...";
var pictureBox = ((PictureBox)sender!);
ImageContent imageContent = CreateImageContentFromPictureBox(pictureBox);
string text;
try
{
text = (await this._imageToTextService.GetTextContentAsync(imageContent).ConfigureAwait(false)).Text!;
}
catch (Exception ex)
{
text = ex.Message;
}
this.UpdateImageDescription(text);
}
#pragma warning restore VSTHRD100 // Avoid async void methods
/// <summary>
/// Updates the description in the text box.
/// </summary>
/// <param name="description">The description.</param>
private void UpdateImageDescription(string description)
{
// Ensure the following UI update is executed on the UI thread
if (this.textBox1.InvokeRequired)
{
this.textBox1.Invoke(() =>
{
this.textBox1.Text = description;
});
}
else
{
this.textBox1.Text = description;
}
}
/// <summary>
/// Creates an <see cref="ImageContent"/> from a <see cref="PictureBox"/>.
/// </summary>
/// <param name="pictureBox">The target <see cref="PictureBox"/>.</param>
/// <returns>Returns a <see cref="ImageContent"/>.</returns>
private static ImageContent CreateImageContentFromPictureBox(PictureBox pictureBox)
=> new(ConvertImageToReadOnlyMemory(pictureBox), GetMimeType(pictureBox.Tag?.ToString()!));
/// <summary>
/// Gets the image binary array from a <see cref="PictureBox"/>.
/// </summary>
/// <param name="pictureBox">The target <see cref="PictureBox"/>.</param>
/// <returns>Returns image binary array.</returns>
private static ReadOnlyMemory<byte> ConvertImageToReadOnlyMemory(PictureBox pictureBox)
{
var image = pictureBox.Image;
var fileName = pictureBox.Tag!.ToString()!;
using var memoryStream = new MemoryStream();
// Save the image to the MemoryStream, using PNG format for example
image.Save(memoryStream, GetImageFormat(fileName));
// Optionally, reset the position of the MemoryStream to the beginning
memoryStream.Position = 0;
// Convert the MemoryStream's buffer to ReadOnlyMemory<byte>
// Note: ToArray creates a copy of the buffer; if you're concerned about performance or memory usage,
// you might look into more efficient methods depending on your use case.
return new ReadOnlyMemory<byte>(memoryStream.ToArray());
}
private void btRefresh_Click(object sender, EventArgs e)
{
this.RefreshImages();
}
/// <summary>
/// Gets the MIME type of the specific image file extension
/// </summary>
/// <param name="fileName">The file name with extension</param>
/// <returns>The MIME type of the specific image file extension</returns>
private static string GetMimeType(string fileName)
{
return Path.GetExtension(fileName) switch
{
".jpg" or ".jpeg" => "image/jpeg",
".png" => "image/png",
".gif" => "image/gif",
".bmp" => "image/bmp",
".tiff" => "image/tiff",
".ico" => "image/x-icon",
".svg" => "image/svg+xml",
_ => throw new NotSupportedException("Unsupported image format.")
};
}
private static ImageFormat GetImageFormat(string fileName)
{
return Path.GetExtension(fileName) switch
{
".jpg" or ".jpeg" => ImageFormat.Jpeg,
".png" => ImageFormat.Png,
".gif" => ImageFormat.Gif,
".bmp" => ImageFormat.Bmp,
".tiff" => ImageFormat.Tiff,
".ico" => ImageFormat.Icon,
".svg" => ImageFormat.MemoryBmp,
_ => throw new NotSupportedException("Unsupported image format.")
};
}
/// <summary>
/// Handles the Change Folder button click event.
/// </summary>
/// <param name="sender">The clicked button.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
private void btChangeFolder_Click(object sender, EventArgs e)
{
this.ChangeFolder();
}
}