9
0
mirror of https://gitee.com/shuto/customCamera.git synced 2026-05-02 00:07:24 +08:00

Correction sur le redimensionnement de l'image.

Mise en place d'une classe pour le transfert des images trop grosse entre activitée.
This commit is contained in:
Christophe BOUCAUT
2014-12-11 12:22:14 +01:00
parent 252a795274
commit aaca25e395
4 changed files with 36 additions and 27 deletions
+1 -6
View File
@@ -16,9 +16,7 @@ import java.io.InputStreamReader;
import java.io.IOException;
import android.content.Intent;
import android.os.Bundle;
import android.util.Base64;
import android.util.Log;
public class CameraLauncher extends CordovaPlugin {
@@ -49,10 +47,7 @@ public class CameraLauncher extends CordovaPlugin {
return false;
}
Bundle imgBackground = new Bundle();
imgBackground.putByteArray("imgBackgroundBase64", imgBackgroundBase64);
intent.putExtras(imgBackground);
TransferBigData.setImgBackgroundBase64(imgBackgroundBase64);
cordova.startActivityForResult((CordovaPlugin) this, intent, CameraLauncher.REQUEST_CODE);
@@ -500,10 +500,9 @@ public class CameraActivity extends Activity {
*/
protected void setBackground() {
// Get the base64 picture for the background only if it's exist.
Bundle currentBundle = this.getIntent().getExtras();
if (currentBundle != null) {
byte[] imgBackgroundBase64 = TransferBigData.getImgBackgroundBase64();
if (imgBackgroundBase64 != null) {
// Get picture.
byte[] imgBackgroundBase64 = currentBundle.getByteArray("imgBackgroundBase64");
Bitmap imgBackgroundBitmap = BitmapFactory.decodeByteArray(imgBackgroundBase64, 0, imgBackgroundBase64.length);
// Get sizes screen.
@@ -519,30 +518,20 @@ public class CameraActivity extends Activity {
// Change size ImageView.
RelativeLayout.LayoutParams paramsMiniature = new RelativeLayout.LayoutParams(widthBackground, heightBackground);
if (heightBackground > displayHeightPx && widthBackground < displayWidthPx) {
// Picture's height greater than device's height AND device's width greater than picture's width.
paramsMiniature.width = (int) (displayHeightPx * widthBackground / heightBackground);
paramsMiniature.height = (int) displayHeightPx;
} else if (heightBackground < displayHeightPx && widthBackground > displayWidthPx) {
// Picture's width greater than device's width AND device's height greater than picture's height.
float ratioX = (float) displayWidthPx / (float) widthBackground;
float ratioY = (float) displayHeightPx / (float) heightBackground;
if (ratioX < ratioY && ratioX < 1) {
paramsMiniature.width = (int) displayWidthPx;
paramsMiniature.height = (int) (displayWidthPx * heightBackground / widthBackground);
} else if (heightBackground > displayHeightPx && widthBackground > displayWidthPx) {
// Picture's width & Picture's height greater than device's width & device's height.
if (heightBackground > widthBackground) {
// Picture's height greater than Picture's width.
paramsMiniature.width = (int) (displayHeightPx * widthBackground / heightBackground);
paramsMiniature.height = (int) displayHeightPx;
} else {
// Picture's width greater than Picture's height.
paramsMiniature.width = (int) displayWidthPx;
paramsMiniature.height = (int) (displayWidthPx * heightBackground / widthBackground);
}
paramsMiniature.height = (int) (ratioX * heightBackground);
} else if (ratioX >= ratioY && ratioY < 1) {
paramsMiniature.width = (int) (ratioY * widthBackground);
paramsMiniature.height = (int) displayHeightPx;
}
// set image at the view.
ImageView imageView = (ImageView) findViewById(R.id.background);
imageView.setImageBitmap(imgBackgroundBitmap);
paramsMiniature.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);
imageView.setLayoutParams(paramsMiniature);
}
@@ -0,0 +1,24 @@
package org.geneanet.customcamera;
/**
* Use to transfer big data between activities.
*/
public class TransferBigData {
protected static byte[] imgBackgroundBase64 = null;
/**
* Get bytes to represent background picture.
* @return byte[]
*/
public static byte[] getImgBackgroundBase64() {
return TransferBigData.imgBackgroundBase64;
}
/**
* Set bytes to represent background picture.
* @param byte[] imgBackgroundBase64
*/
public static void setImgBackgroundBase64(byte[] imgBackgroundBase64) {
TransferBigData.imgBackgroundBase64 = imgBackgroundBase64;
}
}