- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Hướng dẫn cách lấy Icon từ ứng dụng Exe trong lập trình csharp
Xin chào các bạn bài viết hôm nay mình sẽ tiếp tục hướng dẫn các bạn cách lấy icon từ ứng dụng exe và lưu hình ảnh đó lại trong lập trình ứng dụng C#.
[C#] Extract Icon From Application Winform
Bạn có thể sử dụng bài viết này để tích hợp vào ứng dụng của mình.
VD: bạn có một list danh sách các tập tin bao gồm các file như: word, excel, image, tập tin văn bản.
Khi hiện thị danh sách thì hiển thị hình ảnh của tập tin đó kèm theo.
Dươi đây là demo ứng dụng trích xuất icon từ ứng dụng C#:
Đầu tiên các bạn tạo cho mình một class IconExtractor.cs
C#
public class IconExtractor
{
[DllImport("shell32.dll", EntryPoint = "ExtractIconEx")]
private static extern int ExtractIconExA(string lpszFile, int nIconIndex, ref IntPtr phiconLarge, ref IntPtr phiconSmall, int nIcons);
[DllImport("user32")]
private static extern int DestroyIcon(IntPtr hIcon);
public static Icon ExtractIconSmall(string path)
{
IntPtr largeIcon = IntPtr.Zero;
IntPtr smallIcon = IntPtr.Zero;
ExtractIconExA(path, 0, ref largeIcon, ref smallIcon, 1);
Icon returnIcon = null;
if (smallIcon != IntPtr.Zero)
returnIcon = Icon.FromHandle(smallIcon);
DestroyIcon(largeIcon);
return returnIcon;
}
public static Icon ExtractIconLarge(string path)
{
IntPtr largeIcon = IntPtr.Zero;
IntPtr smallIcon = IntPtr.Zero;
ExtractIconExA(path, 0, ref largeIcon, ref smallIcon, 1);
Icon returnIcon = null;
if (largeIcon != IntPtr.Zero)
returnIcon = Icon.FromHandle(largeIcon);
DestroyIcon(smallIcon);
return returnIcon;
}
public static Icon ExtractIcon(string path)
{
Icon largeIcon = ExtractIconLarge(path);
if (largeIcon == null)
return ExtractIconSmall(path);
else
return largeIcon;
}
}
Và tiếp đến là source code cho form main.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.IO;
namespace IconExtractor
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnBrowse_Click(object sender, EventArgs e)
{
if (openFileDialog1.ShowDialog() == DialogResult.OK)
txtPath.Text = openFileDialog1.FileName;
}
private void btnExtract_Click(object sender, EventArgs e)
{
if (txtPath.Text != string.Empty && File.Exists(txtPath.Text))
{
Icon smallIcon = IconExtractor.ExtractIconSmall(txtPath.Text);
Icon largeIcon = IconExtractor.ExtractIconLarge(txtPath.Text);
if (smallIcon != null)
pSmall.BackgroundImage = smallIcon.ToBitmap();
if (largeIcon != null)
pLarge.BackgroundImage = largeIcon.ToBitmap();
}
}
private void txtPath_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
e.Effect = DragDropEffects.Copy;
}
private void txtPath_DragDrop(object sender, DragEventArgs e)
{
string[] fileNames = (string[])e.Data.GetData(DataFormats.FileDrop);
if (fileNames[0].EndsWith(".exe"))
txtPath.Text = fileNames[0];
}
private void btnSaveLarge_Click(object sender, EventArgs e)
{
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
if (saveFileDialog1.FileName.EndsWith(".bmp"))
pLarge.BackgroundImage.Save(saveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp);
else if (saveFileDialog1.FileName.EndsWith(".png"))
pLarge.BackgroundImage.Save(saveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Png);
MessageBox.Show("Image Saved");
}
}
private void btnSaveSmall_Click(object sender, EventArgs e)
{
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
if (saveFileDialog1.FileName.EndsWith(".bmp"))
pSmall.BackgroundImage.Save(saveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp);
else if (saveFileDialog1.FileName.EndsWith(".png"))
pSmall.BackgroundImage.Save(saveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Png);
MessageBox.Show("Image Saved");
}
}
private void pLarge_BackgroundImageChanged(object sender, EventArgs e)
{
btnSaveLarge.Enabled = pLarge.BackgroundImage != null;
}
private void pSmall_BackgroundImageChanged(object sender, EventArgs e)
{
btnSaveSmall.Enabled = pSmall.BackgroundImage != null;
}
}
Thanks for watching!