C#でクリップボードの画像を取得するさんぷる。

C# コンピュータ
C#

プロジェクトの作成

mkdir プロジェクト名
cd プロジェクト名
dotnet new wpf
code .

ソースコード

ファイル名:MainWindow.xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace ClipToPng
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            var obj = (System.IO.MemoryStream)Clipboard.GetData("PNG");

            var bi = new BitmapImage();
            bi.BeginInit();
            bi.CacheOption = BitmapCacheOption.OnLoad;
            bi.StreamSource = obj;
            bi.EndInit();
            bi.Freeze();
            image1.Source = bi;
        }
    }
}

ファイル名:MainWindow.xaml

<Window x:Class="ClipToPng.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:ClipToPng"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <Canvas>
            <Image Name="image1"></Image>
        </Canvas>
    </Grid>
</Window>

実行

GIMPで画像を作成しコピー

サンプルプログラムを実行

コピーした画像が表示された。
今回はクリップボードの画像データをC#のプログラムに取り込みましたが、逆にC#のプログラムからクリップボードにコピーするサンプルは以下の記事になります。
C#でBitmapをクリップボードにコピーしてもアルファチャンネルが保持されない
C#で画像を加工するアプリを作成したとして、加工した画像を他のペイントツールなどにコピーアンドペーストすることが出来ると、アプリの使い勝手が向上します。 コピーアンドペーストをする場合、作成するアプリ側でクリップボードに画像データをセットし...

コメント