Android 圖片壓縮 多種方式組合壓縮 不失真

由于某些圖片的過(guò)大,需要上傳的圖片需要進(jìn)行處理在進(jìn)行上傳,上傳圖片既要保證質(zhì)量又要對(duì)大小進(jìn)行控制:

實(shí)現(xiàn)步驟:

? ??指定圖片的后的最大大小和寬高;

? ? ? ? int maxSize = 500;

? ? ? ? float maxHeight = 1200.0f;

? ? ? ? float maxWidth = 800.0f;

? ??根據(jù)指定打最大寬高狐史,保留原有比例來(lái)記性獲取采樣率進(jìn)行壓縮;

????????Bitmap scaledBitmap;

? ? ? ? File imageFile = new File(filePath);

? ? ? ? if (!imageFile.exists()) {

? ? ? ? ? ? return null;

? ? ? ? }

? ? ? ? // 只解析圖片的基本尺寸信息

? ? ? ? BitmapFactory.Options options = new BitmapFactory.Options();

? ? ? ? options.inJustDecodeBounds = true;

? ? ? ? BitmapFactory.decodeFile(filePath,options);

? ? ? ? // 計(jì)算圖片比例? (Ratio : 比例)

? ? ? ? int actualHeight = options.outHeight;

? ? ? ? int actualWidth = options.outWidth;

? ? ? ? // 實(shí)際圖片比例

? ? ? ? float imgRatio = (float)actualWidth / actualHeight;

? ? ? ? // 想要的最大圖片比例

? ? ? ? float maxRatio = maxWidth / maxHeight;

? ? ? ? if(actualHeight == -1 || actualWidth == -1){

? ? ? ? ? ? try {

? ? ? ? ? ? ? ? ExifInterface exifInterface = new ExifInterface(filePath);

? ? ? ? ? ? ? ? actualHeight = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_LENGTH, ExifInterface.ORIENTATION_NORMAL);//獲取圖片的高度

? ? ? ? ? ? ? ? actualWidth = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, ExifInterface.ORIENTATION_NORMAL);//獲取圖片的寬度

? ? ? ? ? ? ? ? options.outWidth = actualWidth;

? ? ? ? ? ? ? ? options.outHeight = actualHeight;

? ? ? ? ? ? } catch (IOException e) {

? ? ? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? ? ? return null;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? // 如果圖片真實(shí)寬高里的某一個(gè)比設(shè)定的最大寬高大,才進(jìn)行比例壓縮

? ? ? ? if (actualHeight > maxHeight || actualWidth > maxWidth) {

? ? ? ? ? ? if (imgRatio < maxRatio) {

? ? ? ? ? ? ? ? imgRatio = maxHeight / actualHeight;

? ? ? ? ? ? ? ? actualWidth = (int) (imgRatio * actualWidth);

? ? ? ? ? ? ? ? actualHeight = (int) maxHeight;

? ? ? ? ? ? } else if (imgRatio > maxRatio) {

? ? ? ? ? ? ? ? imgRatio = maxWidth / actualWidth;

? ? ? ? ? ? ? ? actualHeight = (int) (imgRatio * actualHeight);

? ? ? ? ? ? ? ? actualWidth = (int) maxWidth;

? ? ? ? ? ? } else {

? ? ? ? ? ? ? ? actualHeight = (int) maxHeight;

? ? ? ? ? ? ? ? actualWidth = (int) maxWidth;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? // 計(jì)算 inSampleSize 的值

? ? ? ? options.inSampleSize = calculateInSampleSize(options, actualWidth, actualHeight);

? ? ? ? options.inJustDecodeBounds = false;

? ? ? ? options.inDither = false;

? ? ? ? options.inTempStorage = new byte[16*1024];

? ? ? ? Bitmap bmp;

? ? ? ? // 根據(jù)計(jì)算的 inSampleSize 的值從圖片文件中提取Bitmap

? ? ? ? try{

? ? ? ? ? ? bmp = BitmapFactory.decodeFile(filePath,options);

? ? ? ? }

? ? ? ? catch(OutOfMemoryError exception){

? ? ? ? ? ? exception.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }

? ??構(gòu)建Matrix實(shí)現(xiàn)圖片方向調(diào)整、和使用Canvas畫(huà)到根據(jù)上面算出圖片壓縮后寬高構(gòu)建的bitmap中冕广;

? ? ? ?// 根據(jù)實(shí)際需要的圖片尺寸創(chuàng)建新Bitmap

? ? ? ? try{

? ? ? ? ? ? scaledBitmap = Bitmap.createBitmap(actualWidth, actualHeight, Bitmap.Config.ARGB_8888);

? ? ? ? }

? ? ? ? catch(OutOfMemoryError exception){

? ? ? ? ? ? exception.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }

? ? ? ? float ratioX = actualWidth / (float) options.outWidth;

? ? ? ? float ratioY = actualHeight / (float)options.outHeight;

? ? ? ? float middleX = actualWidth / 2.0f;

? ? ? ? float middleY = actualHeight / 2.0f;

? ? ? ? Matrix scaleMatrix = new Matrix();

? ? ? ? scaleMatrix.setScale(ratioX, ratioY, middleX, middleY);

? ? ? ? // 將從圖片文件中提取的Bitmap畫(huà)到新創(chuàng)建的Bitmap中

? ? ? ? Canvas canvas = new Canvas(scaledBitmap);

? ? ? ? canvas.setMatrix(scaleMatrix);

? ? ? ? canvas.drawBitmap(bmp, middleX - bmp.getWidth()/2, middleY - bmp.getHeight() / 2, new Paint(Paint.FILTER_BITMAP_FLAG));

? ? ? ? // 解析圖片的Exif旋轉(zhuǎn)信息,用于擺正圖片

? ? ? ? ExifInterface exif;

? ? ? ? try {

? ? ? ? ? ? exif = new ExifInterface(filePath);

? ? ? ? ? ? int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED);

? ? ? ? ? ? Matrix matrix = new Matrix();

? ? ? ? ? ? if (orientation == ExifInterface.ORIENTATION_ROTATE_90) {

? ? ? ? ? ? ? ? matrix.postRotate(90);

? ? ? ? ? ? } else if (orientation == ExifInterface.ORIENTATION_ROTATE_180) {

? ? ? ? ? ? ? ? matrix.postRotate(180);

? ? ? ? ? ? } else if (orientation == ExifInterface.ORIENTATION_ROTATE_270) {

? ? ? ? ? ? ? ? matrix.postRotate(270);

? ? ? ? ? ? }

? ? ? ? ? ? // 如果圖片是歪的,調(diào)整方向

? ? ? ? ? ? scaledBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,scaledBitmap.getWidth(), scaledBitmap.getHeight(), matrix, true);

? ? ? ? } catch (IOException e) {

? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }

????使用bitmap.compress進(jìn)行質(zhì)量壓縮以控制最大大小 叠赐,壓縮的質(zhì)量誤差在規(guī)定最大質(zhì)量的15%左右。

????????ByteArrayOutputStream baos = null;

? ? ? ? FileOutputStream out = null;

? ? ? ? try {

? ? ? ? ? ? baos = new ByteArrayOutputStream();

? ? ? ? ? ? scaledBitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);

? ? ? ? ? ? // 壓縮比例

? ? ? ? ? ? int compressRatio = 100;

? ? ? ? ? ? while (approachTo(maxSize, baos.toByteArray().length) > 0) {

? ? ? ? ? ? ? ? baos.reset();

? ? ? ? ? ? ? ? scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

? ? ? ? ? ? ? ? compressRatio -= 3;

? ? ? ? ? ? }

? ? ? ? ? ? if(compressRatio != 100)

? ? ? ? ? ? ? ? compressRatio += 3;

? ? ? ? ? ? if(compressRatio != 100 && approachTo(maxSize, baos.toByteArray().length) < 0){

? ? ? ? ? ? ? ? baos.reset();

? ? ? ? ? ? ? ? compressRatio += 1;

? ? ? ? ? ? ? ? scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

? ? ? ? ? ? }

? ? ? ? ? ? out = new FileOutputStream(outPutFilename);

? ? ? ? ? ? baos.writeTo(out);

? ? ? ? } catch (FileNotFoundException e) {

? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? } catch (IOException e) {

? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }finally {

? ? ? ? ? ? // 關(guān)閉各種流

? ? ? ? ? ? try {

? ? ? ? ? ? ? ? if (out != null) out.close();

? ? ? ? ? ? ? ? if (baos != null) baos.close();

? ? ? ? ? ? } catch (IOException e) {

? ? ? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? }

? ? ? ? }

? 完整代碼如下:

? ? /**

? ? * @param filePath 輸入路徑

? ? * @param outPutFilename? 輸出路徑

? ? */

? ? public static String compressImage(String filePath, String outPutFilename) {

? ? ? ? // 指定最大大小和最大寬高

? ? ? ? int maxSize = 500;

? ? ? ? float maxHeight = 1200.0f;

? ? ? ? float maxWidth = 800.0f;

????????Bitmap scaledBitmap;

? ? ? ? File imageFile = new File(filePath);

? ? ? ? if (!imageFile.exists()) {

? ? ? ? ? ? return null;

? ? ? ? }

? ? ? ? // 只解析圖片的基本尺寸信息

? ? ? ? BitmapFactory.Options options = new BitmapFactory.Options();

? ? ? ? options.inJustDecodeBounds = true;

? ? ? ? BitmapFactory.decodeFile(filePath,options);

? ? ? ? // 計(jì)算圖片比例? (Ratio : 比例)

? ? ? ? int actualHeight = options.outHeight;

? ? ? ? int actualWidth = options.outWidth;

? ? ? ? // 實(shí)際圖片比例

? ? ? ? float imgRatio = (float)actualWidth / actualHeight;

? ? ? ? // 想要的最大圖片比例

? ? ? ? float maxRatio = maxWidth / maxHeight;

? ? ? ? if(actualHeight == -1 || actualWidth == -1){

? ? ? ? ? ? try {

? ? ? ? ? ? ? ? ExifInterface exifInterface = new ExifInterface(filePath);

? ? ? ? ? ? ? ? actualHeight = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_LENGTH, ExifInterface.ORIENTATION_NORMAL);//獲取圖片的高度

? ? ? ? ? ? ? ? actualWidth = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, ExifInterface.ORIENTATION_NORMAL);//獲取圖片的寬度

? ? ? ? ? ? ? ? options.outWidth = actualWidth;

? ? ? ? ? ? ? ? options.outHeight = actualHeight;

? ? ? ? ? ? } catch (IOException e) {

? ? ? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? ? ? return null;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? // 如果圖片真實(shí)寬高里的某一個(gè)比設(shè)定的最大寬高大,才進(jìn)行比例壓縮

? ? ? ? if (actualHeight > maxHeight || actualWidth > maxWidth) {

? ? ? ? ? ? if (imgRatio < maxRatio) {

? ? ? ? ? ? ? ? imgRatio = maxHeight / actualHeight;

? ? ? ? ? ? ? ? actualWidth = (int) (imgRatio * actualWidth);

? ? ? ? ? ? ? ? actualHeight = (int) maxHeight;

? ? ? ? ? ? } else if (imgRatio > maxRatio) {

? ? ? ? ? ? ? ? imgRatio = maxWidth / actualWidth;

? ? ? ? ? ? ? ? actualHeight = (int) (imgRatio * actualHeight);

? ? ? ? ? ? ? ? actualWidth = (int) maxWidth;

? ? ? ? ? ? } else {

? ? ? ? ? ? ? ? actualHeight = (int) maxHeight;

? ? ? ? ? ? ? ? actualWidth = (int) maxWidth;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? // 計(jì)算 inSampleSize 的值

? ? ? ? options.inSampleSize = calculateInSampleSize(options, actualWidth, actualHeight);

? ? ? ? options.inJustDecodeBounds = false;

? ? ? ? options.inDither = false;

? ? ? ? options.inTempStorage = new byte[16*1024];

? ? ? ? Bitmap bmp;

? ? ? ? // 根據(jù)計(jì)算的 inSampleSize 的值從圖片文件中提取Bitmap

? ? ? ? try{

? ? ? ? ? ? bmp = BitmapFactory.decodeFile(filePath,options);

? ? ? ? }

? ? ? ? catch(OutOfMemoryError exception){

? ? ? ? ? ? exception.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }

?????????// 根據(jù)實(shí)際需要的圖片尺寸創(chuàng)建新Bitmap

? ? ? ? try{

? ? ? ? ? ? scaledBitmap = Bitmap.createBitmap(actualWidth, actualHeight, Bitmap.Config.ARGB_8888);

? ? ? ? }

? ? ? ? catch(OutOfMemoryError exception){

? ? ? ? ? ? exception.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }

? ? ? ? float ratioX = actualWidth / (float) options.outWidth;

? ? ? ? float ratioY = actualHeight / (float)options.outHeight;

? ? ? ? float middleX = actualWidth / 2.0f;

? ? ? ? float middleY = actualHeight / 2.0f;

? ? ? ? Matrix scaleMatrix = new Matrix();

? ? ? ? scaleMatrix.setScale(ratioX, ratioY, middleX, middleY);

? ? ? ? // 將從圖片文件中提取的Bitmap畫(huà)到新創(chuàng)建的Bitmap中

? ? ? ? Canvas canvas = new Canvas(scaledBitmap);

? ? ? ? canvas.setMatrix(scaleMatrix);

? ? ? ? canvas.drawBitmap(bmp, middleX - bmp.getWidth()/2, middleY - bmp.getHeight() / 2, new Paint(Paint.FILTER_BITMAP_FLAG));

? ? ? ? // 解析圖片的Exif旋轉(zhuǎn)信息,用于擺正圖片

? ? ? ? ExifInterface exif;

? ? ? ? try {

? ? ? ? ? ? exif = new ExifInterface(filePath);

? ? ? ? ? ? int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED);

? ? ? ? ? ? Matrix matrix = new Matrix();

? ? ? ? ? ? if (orientation == ExifInterface.ORIENTATION_ROTATE_90) {

? ? ? ? ? ? ? ? matrix.postRotate(90);

? ? ? ? ? ? } else if (orientation == ExifInterface.ORIENTATION_ROTATE_180) {

? ? ? ? ? ? ? ? matrix.postRotate(180);

? ? ? ? ? ? } else if (orientation == ExifInterface.ORIENTATION_ROTATE_270) {

? ? ? ? ? ? ? ? matrix.postRotate(270);

? ? ? ? ? ? }

? ? ? ? ? ? // 如果圖片是歪的,調(diào)整方向

? ? ? ? ? ? scaledBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,scaledBitmap.getWidth(), scaledBitmap.getHeight(), matrix, true);

? ? ? ? } catch (IOException e) {

? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }

? ? ? ? ByteArrayOutputStream baos = null;

? ? ? ? FileOutputStream out = null;

? ? ? ? try {

? ? ? ? ? ? baos = new ByteArrayOutputStream();

? ? ? ? ? ? scaledBitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);

? ? ? ? ? ? // 壓縮比例

? ? ? ? ? ? int compressRatio = 100;

? ? ? ? ? ? while (approachTo(maxSize, baos.toByteArray().length) > 0) {

? ? ? ? ? ? ? ? baos.reset();

? ? ? ? ? ? ? ? scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

? ? ? ? ? ? ? ? compressRatio -= 3;

? ? ? ? ? ? }

? ? ? ? ? ? if(compressRatio != 100)

? ? ? ? ? ? ? ? compressRatio += 3;

? ? ? ? ? ? if(compressRatio != 100 && approachTo(maxSize, baos.toByteArray().length) < 0){

? ? ? ? ? ? ? ? baos.reset();

? ? ? ? ? ? ? ? compressRatio += 1;

? ? ? ? ? ? ? ? scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

? ? ? ? ? ? }

? ? ? ? ? ? out = new FileOutputStream(outPutFilename);

? ? ? ? ? ? baos.writeTo(out);

? ? ? ? } catch (FileNotFoundException e) {

? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? } catch (IOException e) {

? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? return null;

? ? ? ? }finally {

? ? ? ? ? ? // 關(guān)閉各種流

? ? ? ? ? ? try {

? ? ? ? ? ? ? ? if (out != null) out.close();

? ? ? ? ? ? ? ? if (baos != null) baos.close();

? ? ? ? ? ? } catch (IOException e) {

? ? ? ? ? ? ? ? e.printStackTrace();

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? return outPutFilename;

? ? }


? ? //計(jì)算采樣率

? ? public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {

? ? ? ? final int height = options.outHeight;

? ? ? ? final int width = options.outWidth;

? ? ? ? int inSampleSize = 1;

? ? ? ? if (height > reqHeight || width > reqWidth) {

? ? ? ? ? ? final int heightRatio = Math.round((float) height / (float) reqHeight);

? ? ? ? ? ? final int widthRatio = Math.round((float) width / (float) reqWidth);

? ? ? ? ? ? inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;

? ? ? ? }

? ? ? ? final float totalPixels = width * height;

? ? ? ? final float totalReqPixelsCap = reqWidth * reqHeight * 2;


? ? ? ? while (totalPixels / (inSampleSize * inSampleSize) > totalReqPixelsCap) {

? ? ? ? ? ? inSampleSize++;

? ? ? ? }

? ? ? ? return inSampleSize;

? ? }


? //因?yàn)閳D片壓縮不能精確壓縮,所以實(shí)際文件大小約等于規(guī)定大小就不壓縮了, 這里默認(rèn)誤差 15%

? ? private static int approachTo(int maxSize, long realSize){

? ? ? ? double approachTopSize = maxSize * 1.15 * 1024;

? ? ? ? double approachBottomSize = maxSize * 0.85 * 1024;

? ? ? ? if(realSize > approachTopSize){

? ? ? ? ? ? return 1;

? ? ? ? }else if(realSize < approachBottomSize){

? ? ? ? ? ? return -1;

? ? ? ? }else{

? ? ? ? ? ? return 0;

? ? ? ? }

? ? }

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末五鲫,一起剝皮案震驚了整個(gè)濱河市溺职,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖浪耘,帶你破解...
    沈念sama閱讀 217,657評(píng)論 6 505
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件乱灵,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡七冲,警方通過(guò)查閱死者的電腦和手機(jī)痛倚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,889評(píng)論 3 394
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)澜躺,“玉大人蝉稳,你說(shuō)我怎么就攤上這事【虮桑” “怎么了颠区?”我有些...
    開(kāi)封第一講書(shū)人閱讀 164,057評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)通铲。 經(jīng)常有香客問(wèn)我,道長(zhǎng)器贩,這世上最難降的妖魔是什么颅夺? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,509評(píng)論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮蛹稍,結(jié)果婚禮上吧黄,老公的妹妹穿的比我還像新娘。我一直安慰自己唆姐,他們只是感情好拗慨,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,562評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著奉芦,像睡著了一般赵抢。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上声功,一...
    開(kāi)封第一講書(shū)人閱讀 51,443評(píng)論 1 302
  • 那天烦却,我揣著相機(jī)與錄音,去河邊找鬼先巴。 笑死其爵,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的伸蚯。 我是一名探鬼主播摩渺,決...
    沈念sama閱讀 40,251評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼剂邮!你這毒婦竟也來(lái)了摇幻?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 39,129評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎囚企,沒(méi)想到半個(gè)月后丈咐,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,561評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡龙宏,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,779評(píng)論 3 335
  • 正文 我和宋清朗相戀三年棵逊,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片银酗。...
    茶點(diǎn)故事閱讀 39,902評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡辆影,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出黍特,到底是詐尸還是另有隱情蛙讥,我是刑警寧澤,帶...
    沈念sama閱讀 35,621評(píng)論 5 345
  • 正文 年R本政府宣布灭衷,位于F島的核電站次慢,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏翔曲。R本人自食惡果不足惜迫像,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,220評(píng)論 3 328
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望瞳遍。 院中可真熱鬧闻妓,春花似錦、人聲如沸掠械。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,838評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)猾蒂。三九已至均唉,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間肚菠,已是汗流浹背浸卦。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,971評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留案糙,地道東北人限嫌。 一個(gè)月前我還...
    沈念sama閱讀 48,025評(píng)論 2 370
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像时捌,于是被迫代替她去往敵國(guó)和親怒医。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,843評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容