You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
LovyanGFXをありがたく使わせていただいております。
240x240で、取り込んだrgb565のカメラ画像を、240x240のディスプレイにディスプレイに表示させています。
カメラバッファに取り込んだものを、240x240のスプライトにたいして、pushImageで表示さえていますが、
この画像を、1.5倍程度拡大表示をさせたいと思っております。
これを実現するため、
以下のコードを記述しましたが、うまく動きません。(拡大画像が表示されずに、元の画像が表示されます)
これがうまくいく方法はないでしょうか?
よろしくお願いします。
----- (エッセンス)
LGFX_Sprite fbBuf(&display);
fbBuf.pushImage(0,0,240,240,buf);
fbBuf.setRotateZoom(240,240,0,1.5,1.5);
// fbBufに対して文字等の描画
fbBuf.drawString("test",10,10);
fbBuf.pushSrite(0,0);
Beta Was this translation helpful? Give feedback.
All reactions