Questions tagged as 'bitmap'

0
answers

How to identify a number on the screen with Bitmap?

I'm new to C # and want to do a program to identify numbers on the screen andtransformorsavethemtoaDoublevariable.TheonlythingIcoulddowasgettheprintoutofthescreen:PBitmapprinttela(){Bitmapnovaleitura=newBitmap(Screen.PrimaryScreen.Bounds.Width,...
asked by 18.04.2017 / 04:09
0
answers

Canvas Draw TBitmap Multiple Images

I would like to capture several images and "put" all of them in one without having to save them first, I capture 6 images placed one above the other according to the position on the screen and saved in a single image, Any idea? I'm using Delphi...
asked by 08.08.2016 / 23:07
0
answers

Blob For bitmap returns null only on Android 4.2.2

It's simple, if I use this line of code in android 5.0, 6.0 it works correctly, and converts the blob to bitmap. However, testing here on a lower device (android 4.2.2) it always returns null; private Bitmap blotToBit(Blob blob) { BitmapFa...
asked by 20.06.2016 / 16:01
0
answers

Why does the image get poor quality?

Well, the question is simple, why is the image low in quality? Code: Main class: @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE &...
asked by 19.03.2016 / 16:33
0
answers

Generate image with text

I would like to generate images with dynamic text! public void generate() { Bitmap src = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher); Bitmap dest = Bitmap.createBitmap(500, 800, Bitmap.Config.ARGB_8888);...
asked by 21.10.2015 / 20:53
1
answer

SQLite captured image with black background in ImageView

In my application, I need to capture an image that is on a SQLite base in the byte (Blob) format and then convert it to Bitmap to display it in a ImageView . My problem is that the space of ImageView that is...
asked by 09.06.2015 / 18:36