Skip to content

Instantly share code, notes, and snippets.

@zuk74
zuk74 / sample_ppm_canvas_raw_download.html
Created October 19, 2016 13:14
バイナリ(raw)を読み込みcanvasで表示したのち、表示した画像をダウンロードできるようにした
<!DOCTYPE html>
<html>
<head>
<title>sample</title>
</head>
<body>
<form name="test">
<input type="file" id="selfile"><br>
<br/>
@zuk74
zuk74 / sample_raw _canvas.html
Last active July 7, 2022 13:53
バイナリ(raw)データを読み込みcanvas上に画像として表示する
<!DOCTYPE html>
<html>
<head>
<title>sample</title>
</head>
<body>
<form name="test">
<input type="file" id="selfile"><br>
<br/>
@zuk74
zuk74 / sample_canvas_ppm.html
Created October 17, 2016 13:42
ppmファイルを読み込みcanvas上に画像を表示する
<!DOCTYPE html>
<html>
<head>
<title>sample</title>
</head>
<body>
<form name="test">
<input type="file" id="selfile"><br>
<textarea name="txt" rows="10" cols="50" readonly></textarea>
@zuk74
zuk74 / sample_bpm.html
Last active October 16, 2016 13:13
モノクロのpbmファイル読み込んでSVGで表示する。画像サイズが大きいとかなり処理が重い。
<!DOCTYPE html>
<html>
<head>
<title>sample</title>
</head>
<body>
<form name="test">
<input type="file" id="selfile"><br>
<textarea name="txt" rows="10" cols="50" readonly></textarea>