質問編集履歴
4
拡張子変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
OS:winodows10
|
3
3
|
C# windowsForm2進数を画像変換し表示したい。
|
4
4
|
|
5
|
-
test.
|
5
|
+
test.pngをローカル上に配置したあとにWindows PowerShellで以下を実行すると、ローカルに2進数データが保存されます。
|
6
6
|
|
7
7
|
Windows PowerShell
|
8
8
|
```shell
|
9
|
-
> Get-Content -path C:\test.
|
9
|
+
> Get-Content -path C:\test.png -Encoding Byte | foreach { [convert]::toint32([convert]:
|
10
10
|
:tostring($_,2)).tostring("00000000")} | Out-File -FilePath C:\Work\hozon.txt
|
11
11
|
```
|
12
12
|
|
3
誤字脱字
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
Windows PowerShell
|
8
8
|
```shell
|
9
|
-
> Get-Content -path C:\
|
9
|
+
> Get-Content -path C:\test.jpg -Encoding Byte | foreach { [convert]::toint32([convert]:
|
10
10
|
:tostring($_,2)).tostring("00000000")} | Out-File -FilePath C:\Work\hozon.txt
|
11
11
|
```
|
12
12
|
|
2
変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
Windows PowerShell
|
8
8
|
```shell
|
9
|
-
> Get-Content -path C:\
|
9
|
+
> Get-Content -path C:\hozn.jpg -Encoding Byte | foreach { [convert]::toint32([convert]:
|
10
10
|
:tostring($_,2)).tostring("00000000")} | Out-File -FilePath C:\Work\hozon.txt
|
11
11
|
```
|
12
12
|
|
1
タイトル文変更
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
画像から2進数?にできましたが、2進数から画像
|
1
|
+
画像から2進数?にできましたが、2進数から画像に変換する簡単な方法
|
body
CHANGED
File without changes
|