そんな感じのものを作ってみた。
photo by id:takefumi
動作
画像のURLを連番指定して入力
→画像だけのhtml出力
→私嬉しい
例えば、
http://pongeponge.hatenablog.jp/[1-3].jpg
と入力したら
<html>
<body>
<img src="http://pongeponge.hatenablog.jp/1.jpg"><br>
<img src="http://pongeponge.hatenablog.jp/2.jpg"><br>
<img src="http://pongeponge.hatenablog.jp/3.jpg"><br>
</body>
</html>
中身がこんなhtmlファイルを生成する。
そういうやつ。
ソースコードはこんな感じ
using System; using System.IO; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Windows.Forms; using System.Diagnostics; namespace ichiran { public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// <summary> /// html作成ボタンクリック /// </summary> private void button1_Click(object sender, EventArgs e) { Stream fs; StreamWriter sw; string html; html = CreateHTMLData(); if (html == null) return; //ファイル書き込み if (this.saveFileDialog1.ShowDialog() == DialogResult.OK) { if((fs = saveFileDialog1.OpenFile()) != null); sw = new StreamWriter(fs); sw.Write(html); sw.Close(); fs.Close(); } } /// <summary> /// htmlデータ作成 /// </summary> /// <returns></returns> private string CreateHTMLData() { StringBuilder sb = new StringBuilder(); int start, end; //連番の最初と最後 char[] splitchar = {'[',']'}; //区切り文字 Regex rx = new Regex(@"\d+"); //数値検索 MatchCollection mc; //URLの分割 string[] str = this.textBox1.Text.Split(splitchar); //ハイフンが含まれていれば連番抽出 if (str[1].IndexOf('-') > 0) { mc = rx.Matches(str[1]); start = int.Parse(mc[0].Value); end = int.Parse(mc[1].Value); } else return null; //htmlデータ作成 sb.AppendLine("<HTML>"); sb.AppendLine("<BODY>"); for (int num = start; num <= end; num++) { sb.AppendFormat("<img src=\"{0}{1}{2}\"><br>{3}", str[0], num, str[2], Environment.NewLine); } sb.AppendLine("</BODY>"); sb.AppendLine("</HTML>"); return sb.ToString(); } /// <summary> /// テキストボックスの状態 /// </summary> private void textBox1_TextChanged(object sender, EventArgs e) { //テキストボックスに文字があればボタンを有効にする if (this.textBox1.Text == null || this.textBox1.Text == "") { this.button1.Enabled = false; } else { this.button1.Enabled = true; } } } }
ホントはもっと正規表現使ってエレガントに数値取り出しとかしたかったけど、
正直、正規表現がよくわからなかった。
過去にも使った事はあるけど、未だに何かピンと来ない。
あの暗号っぽい見た目がイカンと思うわけですよ。私は。
次はサイトを読み込んで画像のurlを取り出したい。
古墳画像見るんだ…。