Home  /  Personalization Apps  / Bitmapキャッチャ on Windows Pc

Bitmapキャッチャ on Windows Pc

Developed By: たろサ

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: April 17, 2024

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.4
Size 97.8 KB
Release Date May 02, 13
Category Personalization Apps

What's New:
Ver1.4 画面の設定をBroadcastでできるようになりました。Ver1.3 設定がうまく反映されないバグを取りました。 最後に表示した画面を保持するようにしました。Ver1.2 センサーの値を取得できるようにした。 バイブレータの繰り返し処理がバグっていたのを修正した。Ver 1.1 本バージョンより、... [see more]

Description from Developer:
SmartWatch is MN2 app for. LiveWare extension for SmartWatch.
In this application alone, nothing will not work.
Receiving and image information from the normal Android app is a too... [read more]

App preview ([see all 8 screenshots])

App preview

About this app

On this page you can download Bitmapキャッチャ and install on Windows PC. Bitmapキャッチャ is free Personalization app, developed by たろサ. Latest version of Bitmapキャッチャ is 1.4, was released on 2013-05-02 (updated on 2024-04-17). Estimated number of the downloads is more than 500. Overall rating of Bitmapキャッチャ is 5,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 1 users, 1 users had rated it 5*, 1 users had rated it 1*.

How to install Bitmapキャッチャ on Windows?

Instruction on how to install Bitmapキャッチャ on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Bitmapキャッチャ on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install Bitmapキャッチャ using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "Bitmapキャッチャ" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Bitmapキャッチャ on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "Bitmapキャッチャ" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.4.

Download Bitmapキャッチャ 1.4 on Windows PC – 97.8 KB

SmartWatch is MN2 app for. LiveWare extension for SmartWatch.
In this application alone, nothing will not work.
Receiving and image information from the normal Android app is a tool to be displayed in the SmartWatch. If you start this app, even if not made the SmartWatch dedicated app, you can transfer the image to the SmartWatch using the intent.

This application, start-up and will continue to wait for the Broadcast of the Bitmap image and vibrator control information at the same time. If you want to send the image, please create a program such as the following.

 ByteArrayOutputStream baos = new ByteArrayOutputStream ();
 bitmap.compress (CompressFormat.PNG, 100, baos);
 byte [] bytebmp = baos.toByteArray ();
 Intent intent = new Intent ( "com.luaridaworks.extras.BITMAP_SEND");
 intent.putExtra ( "BITMAP", bytebmp);
 sendBroadcast (intent);

Larger image than the screen you can specify the display offset coordinates.
It has been changed specification from Ver 1.1. X, please be individually set the offset value of Y.
intent.putExtra ( "OFFSETX", 130);
intent.putExtra ( "OFFSETY", 60);

However, if you put a check in "to display the entire received image", it will be displayed so that the entire image fits on the screen.

If you want to send a vibrator information, please create a program such as the following.

Intent intent = new Intent ( "com.luaridaworks.extras.VIBRATOR_SEND");
intent.putExtra ( "ONTIME", 2000);
intent.putExtra ( "OFFTIME", 500);
intent.putExtra ( "REPAET", 2);
sendBroadcast (intent);

ONTIME, OFFTIME, please set the numerical value in the REPEAT keyword. In the above example, vibrates for 2 seconds, then repeat twice to stop 0.5 seconds.
Transmission of ONTIME only is also available.
When you send a REPAET as 0 vibrator is stopped.

Than Ver 1.1, touch the screen and the screen sweep result was to be Broadcast transmission.
Thus, you can get a touch action to the SmartWatch in each application.
In the intent-filter, please add a "com.luaridaworks.extras.TOUCH_SEND" and "com.luaridaworks.extras.SWIPE_SEND".
Reception in the BroadcastReceiver, please received something like the following.

int action = (Integer) intent.getSerializableExtra ( "ACTION");
int x = (Integer) intent.getSerializableExtra ( "TOUCHX");
int y = (Integer) intent.getSerializableExtra ( "TOUCHY");

int direction = (Integer) intent.getSerializableExtra ( "DIRECTION");

direction 0: UP, 1: DOWN: 2: LEFT, 3: is RIGHT.

Than Ver 1.2, it was to be able to get the value of the sensor.
In order to get the sensor value, Broadcast send a "com.luaridaworks.extras.SENSOR_REQUEST". When you send it, Bitmap catcher will come Returns the value of the sensor in the Broadcast.

 Intent intent = new Intent ( "com.luaridaworks.extras.SENSOR_REQUEST");
 sendBroadcast (intent);

To receive the value of the sensor is, the intent-filter, please add a "com.luaridaworks.extras.SENSOR_SEND".
Reception of BroadcastReceiver, please received something like the following.

 Float x = (Float) intent.getSerializableExtra ( "SENSORX");
 Float y = (Float) intent.getSerializableExtra ( "SENSORY");
 Float z = (Float) intent.getSerializableExtra ( "SENSORZ");

 The screen display mode from Ver1.4 can now be set in the Broadcast.
Transmission procedure is as follows.
To display the entire received image,
 intent = new Intent (\ "com.luaridaworks.extras.DISPLAY_SEND \");
 intent.putExtra ( "WHOLE", true);
 sendBroadcast (intent);

If you do not see the entire received image,
 intent = new Intent (\ "com.luaridaworks.extras.DISPLAY_SEND \");
 intent.putExtra ( "WHOLE", false);
 sendBroadcast (intent);

If you turn off the screen,
 intent = new Intent (\ "com.luaridaworks.extras.DISPLAY_SEND \");
 intent.putExtra ( "SCREEN", 0);
 sendBroadcast (intent);

If you want to dim the screen,
 intent = new Intent (\ "com.luaridaworks.extras.DISPLAY_SEND \");
 intent.putExtra ( "SCREEN", 1);
 sendBroadcast (intent);

If you want to view the screen,
 intent = new Intent (\ "com.luaridaworks.extras.DISPLAY_SEND \");
 intent.putExtra ( "SCREEN", 2);
 sendBroadcast (intent);

Automatically If you want to sleep,
 intent = new Intent (\ "com.luaridaworks.extras.DISPLAY_SEND \");
 intent.putExtra ( "SCREEN", 3);
 sendBroadcast (intent);
Ver1.4
 画面の設定をBroadcastでできるようになりました。

Ver1.3
 設定がうまく反映されないバグを取りました。
 最後に表示した画面を保持するようにしました。

Ver1.2
 センサーの値を取得できるようにした。
 バイブレータの繰り返し処理がバグっていたのを修正した。

Ver 1.1
 本バージョンより、画面のスリープ設定の仕様を大きく変更しました。
 画面の状態は設定のチェックボックスで行います。
 画面スィープに機能は割り当てていません。常時点灯させた場合は、電池の消耗に注意してください
 また、Ver1.1より画面タッチやスィープ状態をBroadcast送信するようにしたので、もし、アプリで利用したい場合は使ってください。

Ver 1.0
 初期リリース版