【WEB Flex】 はんこ API ではんこ画像( png ) を取得

現在もともとのAPIが使え無くなっていますが、フリーフォントではんこ画像作成 というサービスを
稼働しています。あまりスマートなものではありませんがそれなりのものが作成できます。

オリジナルの API は、gif 画像ですが、Flex に取り込んで、回転加工付きで png をダウンロード
しようというアプリケーションですが、目的より、目的に到達する方法が、flex でアプリケーション
を作成する場合のサンプルになると思います

ブラウザでダウンロード
↓実行ページ



メインコード
業務アプリケーションでは無いので、通常あまり使う機会の無いコントロール
もありますが、そのような意味もあって、レイアウトは absolute を使って
指定位置にコントロールを置けるようにしています。
( API 側で画像の幅の最大値が 500 なのでそれにあわせてます )

いろいろ注意事項があるのですが、ソースコードがそれなりに長いので
要点の一覧だけここで挙げておいて、解説は別のページで行います。
1) flex 内部からの url エンコード
2) HSlider クラスのつまみをドラッグした時に表示されるテキストのスタイル
3) 整数を 16進数文字列に変換
4) Image クラスの complete イベントと プロパティセットのタイミング
5) 繰り返し描画をしない場合の beginBitmapFill のバグ
6) Image インスタンスの graphics プロパティを使った描画範囲( 画面全体になる )
7) Image インスタンスの回転と Matrix を使った回転描画の違い
8) Matrix を使った並行移動
001.<?xml version="1.0" encoding="utf-8"?>
002.<mx:Application
003.    xmlns:mx="http://www.adobe.com/2006/mxml"
004.    initialize="initData();"
005.    layout="absolute"
006.>
007. 
008.<mx:Style source="Style.css" />
009. 
010.<mx:Script>
011.<![CDATA[
012. 
013.    import mx.controls.*;
014.    import mx.events.*;
015.    import mx.formatters.*;
016.    import mx.graphics.codec.*;
017.    import flash.external.*;
018.    import flash.geom.*;
019. 
020.    private var post:URLLoader;
021.    private var hid:String;
022.    private var param:String;
023. 
024.    // *********************************************************
025.    // ログ表示
026.    // *********************************************************
027.    public function firebug(data:Object):void {
028. 
029.        var fmt:DateFormatter = new DateFormatter();
030. 
031.        fmt.formatString = "YYYY/MM/DD HH:NN:SS";
032.        var logdt:String = fmt.format( new Date );
033. 
034.        ExternalInterface.call(
035.            "console.log", logdt,
036.            data+""
037.        );
038. 
039.    }
040. 
041.    // *********************************************************
042.    // アプリケーションの初期化
043.    // *********************************************************
044.    public function initData():void {
045. 
046.        firebug( "initData" );
047. 
048.        getHanko();
049. 
050.        post = new URLLoader();
051. 
052.        // IO エラー
053.        post.addEventListener(IOErrorEvent.IO_ERROR, systemError);
054. 
055.        // 処理終了
056.        post.addEventListener(Event.COMPLETE, completeUpload);
057. 
058.    }
059. 
060.    // *********************************************************
061.    // はんこ画像取得(1) img
062.    // *********************************************************
063.    public function getHanko():void {
064. 
065.        firebug( "getHanko" );
066. 
067.        param = "?"
068.        param += "name=" + encodeURIComponent( hname.text );
069.        param += "&size=" + hsize.text;
070.        if ( option1.selected ) {
071.            param += "&type=" + "maru";
072.        }
073.        else {
074.            param += "&type=" + "shikaku";
075.        }
076. 
077.        var hcolor:int = cp.selectedColor;
078.        var hcolorString:String = hcolor.toString(16);
079.        hcolorString = ("000000" + hcolorString).substring( hcolorString.length );
080.        param += "&color=" + encodeURIComponent("#" + hcolorString );
081. 
082.        param += "&time=" + (new Date()).getTime();
083. 
084.        img.source = "getHanko.php" + param;
085. 
086.    }
087. 
088.    // *********************************************************
089.    // はんこ画像取得(2) img => img2
090.    // *********************************************************
091.    public function completeGet():void {
092. 
093.        firebug( "completeGet" );
094. 
095.        firebug( img.width + "," + img.height );
096. 
097.        img2.width = Bitmap(img.content).bitmapData.width;
098.        img2.height = Bitmap(img.content).bitmapData.height;
099. 
100.        firebug( img2.width + "," + img2.height );
101. 
102.        var matrix:Matrix = new Matrix();
103.        var hwidth:int = parseInt(hsize.text);
104. 
105.        switch( hSlider.value ) {
106.            case 0:
107.                matrix.rotate(0);
108.                matrix.translate(0, 0)
109.                break;
110.            case 45:
111.                matrix.rotate(Math.PI/4);
112.                matrix.translate(hwidth/2, hwidth/2+hwidth/1.414)
113.                break;
114.            case 90:
115.                matrix.rotate(Math.PI/2);
116.                matrix.translate(hwidth, 0)
117.                break;
118.            case 135:
119.                matrix.rotate(Math.PI/2+Math.PI/4);
120.                matrix.translate(hwidth/2, hwidth/2+hwidth/1.414)
121.                break;
122.            case 180:
123.                matrix.rotate(Math.PI);
124.                matrix.translate(hwidth, hwidth)
125.                break;
126.            case 225:
127.                matrix.rotate(Math.PI+Math.PI/4);
128.                matrix.translate(hwidth/2, hwidth/2+hwidth/1.414)
129.                break;
130.            case 270:
131.                matrix.rotate(Math.PI+Math.PI/2);
132.                matrix.translate(0, hwidth)
133.                break;
134.            case 315:
135.                matrix.rotate(Math.PI+Math.PI/2+Math.PI/4);
136.                matrix.translate(hwidth/2, hwidth/2+hwidth/1.414)
137.                break;
138.        }
139. 
140.        img2.graphics.clear();
141.        img2.graphics.beginBitmapFill( Bitmap(img.content).bitmapData, matrix, true );
142.        img2.graphics.drawRect(0, 0, img2.width, img2.height);
143.        img2.graphics.endFill();
144. 
145.    }
146. 
147.    // *********************************************************
148.    // はんこ画像をアップロード
149.    // *********************************************************
150.    public function getPng():void {
151. 
152.        firebug( "getPng" );
153. 
154.        var bmp:BitmapData = new BitmapData(img2.width, img2.height);
155.        bmp.draw(img2);
156. 
157.        var enc:PNGEncoder = new PNGEncoder();
158.        var png:ByteArray = enc.encode(bmp);
159. 
160.        var req:URLRequest = new URLRequest("./savePng.php");
161. 
162.        req.data = png;
163.        req.method = URLRequestMethod.POST;
164. 
165.        post.load(req);
166. 
167.        bmp.dispose();
168. 
169.    }
170. 
171.    // *************************************************
172.    // アップロード完了
173.    // *************************************************
174.    private function completeUpload(event:Event):void {
175. 
176.        firebug( "completeUpload" );
177. 
178.        var result:Array = (post.data).split(/\s/);
179. 
180.//      Alert.show(result[0] + "を保存しました。5分間有効です");
181. 
182.        firebug(result[0]);
183. 
184.        hid = result[0];
185. 
186.        OpenUrl(hid);
187. 
188.    }
189.             
190.    // *************************************************
191.    // IO エラー
192.    // *************************************************
193.    private function systemError(event:IOErrorEvent):void{
194.        Alert.show("IOError:" + event.text);
195.    }
196. 
197.    // *************************************************
198.    // 指定 URL でブラウザを開く
199.    // *************************************************
200.    public function OpenUrl(url:String):void {
201. 
202.        firebug( img.width + "," + img.height );
203.        firebug( img2.width + "," + img2.height );
204. 
205.        if ( url == 'image/' ) {
206.            Alert.show( "画像は保存されていません" );
207.        }
208.        else {
209.            var req:URLRequest = new URLRequest(url);
210.            navigateToURL(req, "_blank");
211.        }
212.    }
213. 
214.]]>
215.</mx:Script>
216. 
217.<mx:Button
218.    x="20" y="30"
219.    label="表示"
220.    click="getHanko()"
221./>
222. 
223.<mx:Button
224.    x="400" y="30"
225.    label="png画像表示"
226.    click="getPng()"
227./>
228. 
229.<mx:ColorPicker
230.    x="87" y="30"
231.    id="cp"
232.    showTextField="true"
233.    selectedColor="13369344"
234.    color="black"
235./>
236. 
237.<mx:HSlider
238.    x="120" y="30"
239.    id="hSlider"
240.    minimum="0"
241.    maximum="315"
242.    value="0"
243.    snapInterval="45"
244.    labels="['正','', '右', '', '逆', '', '左', '']"
245./>
246. 
247.<mx:RadioButton
248.    x="300" y="30"
249.    groupName="type" id="option1" label="丸"
250.    selected="true"
251.    fillColors="[0xFFFFFF,0xFFFFFF]"
252./>
253.<mx:RadioButton
254.    x="340" y="30"
255.    groupName="type" id="option2" label="四角"
256.    fillColors="[0xFFFFFF,0xFFFFFF]"
257./>
258. 
259.<mx:TextInput
260.    x="20" y="80"
261.    id="hname"
262.    maxChars="2"
263.    text="山田"
264.    color="black"
265./>
266. 
267.<mx:TextInput
268.    x="100" y="80"
269.    id="hsize"
270.    maxChars="3"
271.    text="150"
272.    color="black"
273./>
274. 
275.<mx:Image
276.    visible="false"
277.    id="img"
278.    x="40" y="120"
279.    complete="completeGet()"
280./>
281. 
282.<mx:Image
283.    id="img2"
284.    x="40" y="120"
285./>
286. 
287.</mx:Application>

PHP コード
メインは flex なので短いコードですが、これが無いと png 画像化できない
という重要なコードです。内容は、flex を配置しているサーバから API 側
のサーバーの橋渡しを行っています。

flex のセキュリティの制限で、表示だけならば別ドメインでも問題無いので
すが、データ化しようとするとエラーになります。ですから、自分のサーバー
経由で画像データを取得できるようにしています
getHanko.php
01.<?
02.header( "Content-Type: image/gif" );
03.header( "Expires: Wed, 31 May 2000 14:59:58 GMT" );
04. 
05.$url = "http://hanko-api.web-career.com/seal/?";
06.$name = urlencode($_GET['name']);
07.$url .= "name=$name";
08.$url .= "&size={$_GET['size']}";
09.$url .= "&type={$_GET['type']}";
10.$color = urlencode($_GET['color']);
11.$url .= "&color=$color";
12. 
13.print file_get_contents($url);
14.?>


savePng.php は、PNG 画像を flex から送ったデータで保存するおきまりのコードですが、
ファイル名をセッションID をそのまま使用してカレントに作成しています。

そして、アクセスがあるたびに、5分以上経過している画像ファイルを削除
するようにしてあります。

保存後、flex 側で ブラウザを使って表示するので、ファイル名を返しています
savePng.php
01.<?
02.session_start();
03.$id = session_id();
04. 
05. 
06.$fp = fopen( "php://input", "rb" );
07.$wfp = fopen( "$id.png", "wb" );
08. 
09.while( $ret = fread( $fp, 4096 ) ) {
10. 
11.    fwrite( $wfp, $ret );
12. 
13.}
14. 
15.fclose($wfp);
16.fclose($fp);
17. 
18.$DirHandle = @opendir("./");
19.if ( $DirHandle ) {
20.    $Target = readdir( $DirHandle );
21.    while( $Target !== false ) {
22. 
23.        if ( $Target != "." ) {
24.            $ext = strrchr( $Target, "." );
25.            $ext = strtolower($ext);
26.            if ( $ext == ".png" ) {
27.                $astamp = stat($Target);
28.                $laststamp = $astamp[9];
29.                if ( $laststamp < time() - 300 ) {
30.                        @unlink($Target);
31.                }
32.            }
33.        }
34.        $Target = readdir( $DirHandle );
35. 
36.    }
37.     
38.    closedir( $DirHandle );
39.}
40. 
41. 
42.print $id . ".png\n";
43.?>