Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
描画キャンバスをビットマップにキャプチャするために使用ImageSnapshot.captureImage(canvas, 0, jPEGEncoder)していますが、キャンバス自体よりもはるかに大きな jpeg が必要です。
ImageSnapshot.captureImage(canvas, 0, jPEGEncoder)
たとえば、キャンバスは 100x400 ですが、キャンバスの結果のイメージを 200x800 にしたいとします。UI が台無しになるため、キャンバスをこのサイズまで拡大/縮小することはできません。
scaleLimited:Boolean(デフォルト= true)— The maximum width or height of a bitmap in Flash is 2880 pixels--scaleLimitedがtrueに設定されている場合、解像度は2880ピクセル以内に収まるように比例して減少します。そうでない場合、scaleLimitedがfalseの場合、小さいスナップショットウィンドウが取得され、つなぎ合わされて大きい画像がキャプチャされます。デフォルトはtrueです。
The maximum width or height of a bitmap in Flash is 2880 pixels
情報サイト