有人听说过吗?提取QR
Codes
(所有QR码必须在相同的宽度和高度{square}中)并从每个QR Code
获取数据,然后将它们组合在一起。然后从每个QR码获取每个像素值,并将其更改为hexadecimal
。
您将给出#FFFFFFFF
,#FF000000
,#00000000
(白色,黑色,透明)等(但对于黑白QR Code
,则只有其中的两个)。然后,针对每个QR
代码中的每个值,通过创建一种新颜色 QR Code
,该颜色将根据每个十六进制的值和新颜色{{ 1}}将具有从上一个QR Code
中提取的内容。
例如,我现在要做的是提取8个数字QR Codes
并合并内容,然后创建一个新的QR Code
。
到现在,我陷入了过程的中间。通过将值更改为colour QR Code
,我已经成功提取了每个QR Code
的内容和像素。问题是如何将hexadecimal
的值从每个hexadecimal
更改为QR code
(alpha,红色,绿色,蓝色)颜色并创建新的颜色ARGB
。 / p>
但是,我有Google的提示,有人说MatrixToImageWriter
会有用。但是那里真的没有太多对我有用的工作。好吧,我需要一些帮助。但是,我不确定它是否对我有用。
QR Code
库进行扫描,并从每个Zxing
中获取结果。答案 0 :(得分:5)
我刚刚编写了所需的解码/编码方法;矩阵看起来有所不同,因为我使用QR Droid应用程序创建了输入QR码,并使用ZXing创建了输出QR码,这可能会使用不同级别的错误校正;不过,两者都有相同的目标网址,这是我的。
依赖关系来自存储库google()
和mavenCentral()
:
dependencies {
implementation "androidx.appcompat:appcompat:1.0.2"
// https://mvnrepository.com/artifact/com.google.zxing
implementation "com.google.zxing:core:3.3.3"
implementation "com.google.zxing:android-core:3.3.0"
}
使用的布局资源:
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/inputImage"
android:src="@drawable/qrcode"
android:layout_height="200dp"
android:layout_width="200dp"
android:padding="8dp"/>
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/outputImage"
android:layout_height="200dp"
android:layout_width="200dp"
android:padding="8dp"/>
</androidx.appcompat.widget.LinearLayoutCompat>
和BitMatrix
的操纵;当encode()
可用时,String
方法应该满足的地方;只是为了一个完整的示例添加了这两种方法(它从一个Bitmap
读取AppCompatImageView
,然后写入另一个AppCompatImageView
):
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.util.Log;
import androidx.annotation.ColorInt;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.AppCompatImageView;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.LuminanceSource;
import com.google.zxing.MultiFormatReader;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.NotFoundException;
import com.google.zxing.RGBLuminanceSource;
import com.google.zxing.Result;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.HybridBinarizer;
public class MainActivity extends AppCompatActivity {
private AppCompatImageView mInputImage;
private AppCompatImageView mOutputImage;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.layout_main);
this.mInputImage = this.findViewById(R.id.inputImage);
this.mOutputImage = this.findViewById(R.id.outputImage);
Bitmap bitmap = ((BitmapDrawable) this.mInputImage.getDrawable()).getBitmap();
String data = this.decode(bitmap);
bitmap = this.encode(data, bitmap.getWidth(), bitmap.getHeight(), 0xFFFFD034,0xFF06425C);
this.mOutputImage.setImageBitmap(bitmap);
}
private String decode(Bitmap bitmap) {
String data = null;
MultiFormatReader reader = new MultiFormatReader();
int[] intArray = new int[bitmap.getWidth() * bitmap.getHeight()];
bitmap.getPixels(intArray, 0, bitmap.getWidth(), 0, 0, bitmap.getWidth(), bitmap.getHeight());
LuminanceSource source = new RGBLuminanceSource(bitmap.getWidth(), bitmap.getHeight(), intArray);
BinaryBitmap binary = new BinaryBitmap(new HybridBinarizer(source));
try {
Result result = reader.decode(binary);
data = result.getText();
} catch (NotFoundException e) {
e.printStackTrace();
}
Log.d("ZXing", "decoded: " + data);
return data;
}
private Bitmap encode(String contents, int width, int height, @ColorInt int foreground, @ColorInt int background) {
MultiFormatWriter writer = new MultiFormatWriter();
BitMatrix matrix = null;
Bitmap bitmap = null;
try {
matrix = writer.encode(contents, BarcodeFormat.QR_CODE, width, height);
} catch (WriterException e) {
e.printStackTrace();
}
if(matrix != null) {
int[] pixels = new int[width * height];
for (int y = 0; y < height; y++) {
int offset = y * width;
for (int x = 0; x < width; x++) {
pixels[offset + x] = matrix.get(x, y) ? foreground : background;
}
}
bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
}
return bitmap;
}
}
结果看起来像这样;其中左一个是输入矩阵,右一个是输出矩阵:
答案 1 :(得分:2)
好吧,经过几天的互联网挖掘。我已经找到了解决方案,并且我认为有一天它会对其他人有所帮助。
QRCodeWriter qw = new QRCodeWriter();
try {
HashMap<EncodeHintType, Object> hints = new HashMap<>();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
hints.put(EncodeHintType.MARGIN, margin);
BitMatrix matrix = qw.encode(msg, BarcodeFormat.QR_CODE, width, height, hints);
Bitmap bmp = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
for (int x = 0; x < width; x++) {
for (int y = 0; y < width; y++) {
bmp.setPixel(x, y, matrix.get(x, y) ? Color.BLACK : Color.WHITE);
}
}
return bmp;
} catch (WriterException e) {
e.printStackTrace();
}
要更改QR码的颜色,以及是否有像我这样的arraylist
存储所有hex
字符串的颜色。您可以使用for
循环并插入hex
字符串。
要根据代码更改颜色,
for (int x = 0; x < width; x++) {
for (int y = 0; y < width; y++) {
bmp.setPixel(x, y, matrix.get(x, y) ? Color.BLACK : Color.WHITE);
}
}
Color.Black可以用arraylist
替换(在我的情况下,我用colorArray
替换),而Color.White是QR码背景的颜色。>
好吧,希望有一天能对某人有所帮助。 快乐编码。