亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? imageprocessor.cpp

?? windows ce imageviewer_customized
?? CPP
字號:
//
// ImageProcessor.cpp
//
// --------------------------------------------------------
// A Practical Guide to Script-Driven Software Development
// Author: Qiming Lu                        Date: 6/1/2006
// MSN Messager: luqiming26@hotmail.com
// MSN Blog: http://spaces.msn.com/jemylu
// --------------------------------------------------------

#include "stdafx.h"
#include "ImageProcessor.h"
#include "safe_defs.h"
#include "MiscUtils.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////////////////////////////////
ImageProcessor::ImageProcessor()
	: mSourceFile("")
	, mIPicture(0)
	, mMemDC(0)
	, mSrcImage(0)
	, mOldImage(0)
	, mIsReady(false)
	, mKeepAspectRatio(false)
{
	mMemDC = ::CreateCompatibleDC(0);
}

ImageProcessor::~ImageProcessor()
{
	if (mMemDC)
	{
		// Select out the source bitmap
		if (mOldImage)
		{
			::SelectObject(mMemDC, mOldImage);
			mOldImage = 0;
		}
		::DeleteDC(mMemDC);
		mMemDC = 0;
	}
	SAFE_DELETEOBJECT(mSrcImage);
	SAFE_RELEASE(mIPicture);
}

// Determine if the given file is supported by this image processor.
bool ImageProcessor::IsSupported(const char * inSrcFile)
{
	return MiscUtils::IsSupportedImageFile(inSrcFile);
}

// Load the source image file, then decode the data and store the bitmap to a memory DC.
bool ImageProcessor::LoadFile(const char * inSrcFile)
{
	mIsReady = false;

	IPicture* pPicture = 0;
	if (Decode(inSrcFile, &pPicture))
	{
		// Save the source file path
		mSourceFile = inSrcFile;

		// Release the previously loaded image
		if (mMemDC && mOldImage)
		{
			::SelectObject(mMemDC, mOldImage);
			mOldImage = 0;
		}
		SAFE_DELETEOBJECT(mSrcImage);
		SAFE_RELEASE(mIPicture);
		mIPicture = pPicture;

		// If keep the bitmap object for later using, 
		// please keep IPicture interface too!
		OLE_HANDLE oleBitmap = 0;
		mIPicture->get_Handle(&oleBitmap);

		SAFE_DELETEOBJECT(mSrcImage);
		mSrcImage = (HBITMAP)oleBitmap;

		// Load source image to the memory DC
		if (mMemDC && mSrcImage)
		{
			mOldImage = (HBITMAP) ::SelectObject(mMemDC, mSrcImage);
			mIsReady  = true;
		}
	}

	return mIsReady;	
}

// Reload the current source image file.
bool ImageProcessor::Reload()
{
	return LoadFile(mSourceFile);
}

// Save the current image to a BMP file.
bool ImageProcessor::SaveFile(const char * inDestFile)
{
	if (!mMemDC)
		return false;

	CBitmap* pImage = CBitmap::FromHandle((HBITMAP)GetCurrentObject(mMemDC, OBJ_BITMAP));
	if (!pImage)
		return false;

	// Get the descriptions of the bitmap to save
	BITMAP  bmp;
	pImage->GetBitmap(&bmp);
	long imageSize = bmp.bmWidthBytes * bmp.bmHeight;
	
	// Set up the bitmap info structure
	BITMAPINFOHEADER info;
	ZeroMemory(&info, sizeof(info));
	info.biSize = sizeof(BITMAPINFOHEADER);
	info.biBitCount = bmp.bmBitsPixel;
	info.biWidth  = bmp.bmWidth;
	info.biHeight = bmp.bmHeight;
	info.biPlanes = bmp.bmPlanes;
	info.biCompression = BI_RGB;
	// If 16-bpp bitmap, RGB565 or RGB555?
	long rgb16Format = 0; // 0:non-rgb16, 1:rgb565, 2:rgb555
	if (bmp.bmBitsPixel == 16)
	{
		info.biCompression = BI_BITFIELDS;
		rgb16Format = 1; // ?
	}

	int nColors = 0;
	if (bmp.bmBitsPixel <= 8)
		nColors = 1 << bmp.bmBitsPixel;

	const DWORD bits555[] = {0x7C00,0x03E0,0x001F};
	const DWORD bits565[] = {0xF800,0x07E0,0x001F};

	// Bitmap file header
	BITMAPFILEHEADER	hdr;
	hdr.bfType		= ((WORD) ('M' << 8) | 'B');	// always is "BM"
	hdr.bfSize		= imageSize + sizeof(hdr) + sizeof(BITMAPINFOHEADER);
	hdr.bfReserved1 = 0;
	hdr.bfReserved2 = 0;
	hdr.bfOffBits	= (DWORD) (sizeof(BITMAPFILEHEADER) + info.biSize + nColors * sizeof(RGBQUAD));
	if (rgb16Format) // Modify some fields if 16-bpp format
	{
		hdr.bfSize    += 12;
		hdr.bfOffBits += 12;
	}

	FILE * fp = fopen(inDestFile, "wb");
	if (fp)
	{
		fwrite(&hdr, sizeof(char), sizeof(BITMAPFILEHEADER), fp);
		fwrite(&info, sizeof(char), sizeof(BITMAPINFOHEADER), fp);
		if (rgb16Format == 1) // RGB565
		{
			fwrite(bits565, sizeof(DWORD), 3, fp);
		}
		else if (rgb16Format == 2) // RGB555
		{
			fwrite(bits555, sizeof(DWORD), 3, fp);
		}

		// Here, if nColors less than 256, need write RGBQUAD
		// ...

		fwrite(bmp.bmBits, sizeof(char), imageSize, fp);
		fclose(fp);
		return true;
	}
	
	return false;
}

// Get the bitmap information of the source image.
bool ImageProcessor::GetInfo(long* outWidth, long* outHeight, long* outBitcount)
{
	if (!mSrcImage)
		return false;

	BITMAP  bmp;
	CBitmap* pImage = CBitmap::FromHandle(mSrcImage);
	pImage->GetBitmap(&bmp);
	if (outWidth)
		*outWidth = bmp.bmWidth;
	if (outHeight)
		*outHeight = bmp.bmHeight;
	if (outBitcount)
		*outBitcount = bmp.bmBitsPixel;
	return true;
}

// Load the source image file, then decode it.
bool ImageProcessor::Decode(const char * inSrcFile, IPicture** outPic)
{
	*outPic = 0;
	// Open the image source file.
	HANDLE hFile = CreateFile(inSrcFile, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0);
	if (hFile == INVALID_HANDLE_VALUE)
	{
		return false;
	}

	// Determine the file size.
	DWORD dwFileSize = GetFileSize(hFile, 0);
	if (dwFileSize == -1)
	{
		CloseHandle(hFile);
		return false;
	}

	// Read the file data out to a global memory block.
	LPVOID pvData      = 0;
	DWORD  dwBytesRead = 0;
	HGLOBAL hGlobal = GlobalAlloc(GMEM_MOVEABLE, dwFileSize);
	pvData = GlobalLock(hGlobal);
	BOOL bRead = ReadFile(hFile, pvData, dwFileSize, &dwBytesRead, 0);
	GlobalUnlock(hGlobal);
	CloseHandle(hFile);
	if (!bRead)
	{
		GlobalFree(hGlobal);
		return false;
	}

	// Decode the source image and retrieve a Win32 HBITMAP handle.
	LPSTREAM pstm = 0;
	HRESULT  hr   = ::CreateStreamOnHGlobal(hGlobal, TRUE, &pstm);
	if (FAILED(hr))
	{
		GlobalFree(hGlobal);
		return false;
	}

	hr = ::OleLoadPicture(pstm, dwFileSize, FALSE, IID_IPicture, (void**)outPic);
	if (FAILED(hr))
	{
		GlobalFree(hGlobal);
		return false;
	}
	pstm->Release();
	GlobalFree(hGlobal);

	return (*outPic != 0);
}

// Overlay the given logo image to the source image at the specified coordinate.
bool ImageProcessor::OverlayLogo(int inX, int inY, const char * inLogoFile)
{
	// Decode the logo image file
	IPicture* pLogoPic = 0;
	if (!Decode(inLogoFile, &pLogoPic))
		return false;
	
	// Retrieve the logo image and get its dimension
	OLE_HANDLE oleBitmap = 0;
	pLogoPic->get_Handle(&oleBitmap);
	HBITMAP logoImage = (HBITMAP)oleBitmap;
	BITMAP  bmp;
	CBitmap tmpBmp;
	tmpBmp.Attach(logoImage);
	tmpBmp.GetBitmap(&bmp);
	tmpBmp.Detach();

	HDC tmpDC = ::CreateCompatibleDC(0);
	HBITMAP oldBmp = (HBITMAP) ::SelectObject(tmpDC, logoImage);
	
	::StretchBlt(
		mMemDC,							// Destination DC
		inX,							// X sink position
		inY,							// Y sink position
		bmp.bmWidth,					// Destination width
		bmp.bmHeight,					// Destination height
		tmpDC,							// Source DC
		0,								// X source position
		0,								// Y source position
		bmp.bmWidth,					// Source width
		bmp.bmHeight,					// Source height
		SRCCOPY							// Raster operation code
		);

	::SelectObject(tmpDC, oldBmp);
	SAFE_DELETEOBJECT(logoImage);
	SAFE_RELEASE(pLogoPic);
	::DeleteDC(tmpDC);
	return true;
}

// Overlay the current system time to the image surface at the specified coordinate.
bool ImageProcessor::OverlaySystemTime(int inX, int inY)
{
	// Update the current system time
	SYSTEMTIME    systemTime, localTime;
	GetSystemTime(&systemTime);   // This is Coordinated Universal Time (UTC)
	SystemTimeToTzSpecificLocalTime(0, &systemTime, &localTime);
	char szTime[30];
	sprintf(szTime, "%4d-%02d-%02d(%02d:%02d:%02d)", localTime.wYear, localTime.wMonth, 
		localTime.wDay, localTime.wHour, localTime.wMinute, localTime.wSecond);
	return DrawText(inX, inY, szTime);
}

// Draw a text to the current image at the specified coordinate.
bool ImageProcessor::DrawText(int inX, int inY, const char * inText)
{
	if (!mMemDC)
		return false;

/*	HDC tmpDC = ::CreateCompatibleDC(0);
	if (!tmpDC)
		return false;

	// Get the dimension of the text (if drawing to the bitmap)
	SIZE txtSize;
	::GetTextExtentPoint32(tmpDC, inText, (int)strlen(inText), &txtSize);

	HBITMAP txtBmp = ::CreateCompatibleBitmap(tmpDC, txtSize.cx, txtSize.cy);
	HBITMAP oldBmp = (HBITMAP) ::SelectObject(tmpDC, txtBmp);
	// Paint with the white background
	CRect rect(0, 0, txtSize.cx, txtSize.cy);
	PaintColor(tmpDC, &rect, RGB(255, 255, 255));
	::ExtTextOut(tmpDC, 0, 0, ETO_OPAQUE | ETO_CLIPPED, 0, inText, (UINT)strlen(inText), 0);

	// Copy the text bitmap to the internal memory DC
	::StretchBlt(
		mMemDC,							// Destination DC
		inX,							// X sink position
		inY,							// Y sink position
		txtSize.cx,						// Destination width
		txtSize.cy,						// Destination height
		tmpDC,							// Source DC
		0,								// X source position
		0,								// Y source position
		txtSize.cx,						// Source width
		txtSize.cy,						// Source height
		SRCCOPY							// Raster operation code
		);

	::SelectObject(tmpDC, oldBmp);
	::DeleteObject(txtBmp);
	::DeleteDC(tmpDC);
	return true;*/
	
	int oldMode = ::SetBkMode(mMemDC, TRANSPARENT);
	::ExtTextOut(mMemDC, inX, inY, 0, 0, inText, (UINT)strlen(inText), 0);
	::SetBkMode(mMemDC, oldMode);
	return true;
}

// Invert the current image.
void ImageProcessor::Invert()
{
	if (mMemDC && mSrcImage)
	{
		// Get the dimension of the source image.
		BITMAP  bmp;
		CBitmap srcBmp;
		srcBmp.Attach(mSrcImage);
		srcBmp.GetBitmap(&bmp);
		srcBmp.Detach();

		// Create a background bitmap (with white color)
		HBITMAP backBmp = ::CreateCompatibleBitmap(mMemDC, bmp.bmWidth, bmp.bmHeight);
		if (!backBmp)
			return;
		HDC tmpDC = ::CreateCompatibleDC(0);
		HBITMAP oldBmp = (HBITMAP) ::SelectObject(tmpDC, backBmp);
		CRect rect(0, 0, bmp.bmWidth, bmp.bmHeight);
		PaintColor(tmpDC, &rect, RGB(255, 255, 255));

		// Invert the source image on the temp DC
		::StretchBlt(
			tmpDC,							// Destination DC
			0,								// X sink position
			0,								// Y sink position
			bmp.bmWidth,					// Destination width
			bmp.bmHeight,					// Destination height
			mMemDC,							// Source DC
			0,								// X source position
			0,								// Y source position
			bmp.bmWidth,					// Source width
			bmp.bmHeight,					// Source height
			SRCINVERT						// Raster operation code
			);

		// Copy the inverted image from the temp DC to the internal memory DC
		::StretchBlt(
			mMemDC,							// Destination DC
			0,								// X sink position
			0,								// Y sink position
			bmp.bmWidth,					// Destination width
			bmp.bmHeight,					// Destination height
			tmpDC,							// Source DC
			0,								// X source position
			0,								// Y source position
			bmp.bmWidth,					// Source width
			bmp.bmHeight,					// Source height
			SRCCOPY							// Raster operation code
			);

		::SelectObject(tmpDC, oldBmp);
		::DeleteObject(backBmp);
		::DeleteDC(tmpDC);
	}
}

// Convert the colorful image to a greyscale image.
//	Y = 0.299 * R + 0.587 * G + 0.11 * B
void ImageProcessor::Greyscale()
{
	if (!mSrcImage)
		return;

	BITMAP  bmp;
	CBitmap* pImage = CBitmap::FromHandle(mSrcImage);
	pImage->GetBitmap(&bmp);

	// RGB32: BGRA BGRA ...
	// RGB24: BGR BGR ...
	if (bmp.bmBitsPixel == 32 || bmp.bmBitsPixel == 24)
	{
		int pixelBytes = bmp.bmBitsPixel / 8;
		
		BYTE* pLine = (BYTE*) bmp.bmBits;
		for (int i = 0; i < bmp.bmHeight; i++)
		{
			BYTE* pPixel = pLine;
			for (int j = 0; j < bmp.bmWidth; j++)
			{
				BYTE y = (BYTE) (0.11 * pPixel[0] + 0.587 * pPixel[1] + 0.299 * pPixel[2]);
				pPixel[0] = pPixel[1] = pPixel[2] = y;
				pPixel += pixelBytes;
			}

			pLine += bmp.bmWidthBytes;
		}
	}
	else
	{
		// NOT implemented!
	}
}

void ImageProcessor::PaintColor(HDC inDC, RECT* inRect, COLORREF inColor)
{
	HBRUSH backBrush = ::CreateSolidBrush(inColor);
	if (backBrush)
	{
		::FillRect(inDC, inRect, backBrush);
		::DeleteObject(backBrush);
	}
}

// Clean the current image content (with the background color).
void ImageProcessor::Clean()
{
	if (mMemDC && mSrcImage)
	{
		// Get the dimension of the source image.
		BITMAP  bmp;
		CBitmap srcBmp;
		srcBmp.Attach(mSrcImage);
		srcBmp.GetBitmap(&bmp);
		srcBmp.Detach();

		::StretchBlt(
			mMemDC,							// Destination DC
			0,								// X sink position
			0,								// Y sink position
			bmp.bmWidth,					// Destination width
			bmp.bmHeight,					// Destination height
			mMemDC,							// Source DC
			0,								// X source position
			0,								// Y source position
			bmp.bmWidth,					// Source width
			bmp.bmHeight,					// Source height
			WHITENESS						// Raster operation code
			);
	}
}

// Draw the current image to the destination window.
void ImageProcessor::Display(CWnd* inDestWnd)
{
	if (mMemDC && mSrcImage && inDestWnd)
	{
		// Get the dimension of the source image.
		BITMAP  bmp;
		CBitmap srcBmp;
		srcBmp.Attach(mSrcImage);
		srcBmp.GetBitmap(&bmp);
		srcBmp.Detach();

		// Get the target displaying window.
		RECT dstRect;
		inDestWnd->GetClientRect(&dstRect);
		int dstX = dstRect.left;
		int dstY = dstRect.top;
		int dstWidth  = dstRect.right - dstRect.left;
		int dstHeight = dstRect.bottom - dstRect.top;
		HDC dstDC = inDestWnd->GetWindowDC()->GetSafeHdc();

		// Should we keep the same aspect ratio as the original image?
		if (mKeepAspectRatio)
		{
			double xScale = 1.0 * dstWidth / bmp.bmWidth;
			double yScale = 1.0 * dstHeight / bmp.bmHeight;
			if (xScale > yScale)
			{
				int newWidth = int(yScale * bmp.bmWidth);
				dstX = (dstWidth - newWidth) / 2;
				dstWidth = newWidth;
			}
			else
			{
				int newHeight = int(xScale * bmp.bmHeight);
				dstY = (dstHeight - newHeight) / 2;
				dstHeight = newHeight;
			}

			// Clean the screen first!
			PaintColor(dstDC, &dstRect, RGB(0,0,0));
		}

		::StretchBlt(
			dstDC,							// Destination DC
			dstX,							// X sink position
			dstY,							// Y sink position
			dstWidth,						// Destination width
			dstHeight,						// Destination height
			mMemDC,							// Source DC
			0,								// X source position
			0,								// Y source position
			bmp.bmWidth,					// Source width
			bmp.bmHeight,					// Source height
			SRCCOPY							// Raster operation code
			);
	}
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品国产品国语在线不卡| 99久久久精品免费观看国产蜜| 91精品欧美福利在线观看| 麻豆精品视频在线| 亚洲日本在线天堂| 精品国免费一区二区三区| 99热这里都是精品| 成人免费小视频| 91精品国产综合久久久久久| 粉嫩一区二区三区性色av| 丝袜美腿亚洲综合| 国产精品麻豆一区二区| 日韩色视频在线观看| 色综合久久久久综合体| 国产精品一区二区在线观看不卡| 久久精品噜噜噜成人88aⅴ| 一区在线观看免费| 久久精品夜色噜噜亚洲aⅴ| 欧美日本一区二区三区| caoporen国产精品视频| 国产剧情一区在线| 免费视频一区二区| 午夜免费久久看| 一区二区三区欧美视频| 国产精品麻豆一区二区| 2024国产精品| 精品日韩在线观看| 欧美久久久久久蜜桃| 欧美在线视频日韩| 91视频国产资源| 高清不卡一区二区| 国产suv精品一区二区三区| 蜜臀av一区二区| 五月天久久比比资源色| 亚洲妇熟xx妇色黄| 亚洲国产视频在线| 一区二区三区日本| 亚洲一区在线电影| 亚洲尤物视频在线| 亚洲午夜电影在线| 一区二区三区在线不卡| 亚洲精品v日韩精品| 亚洲免费大片在线观看| 一区二区在线观看视频在线观看| 亚洲免费观看高清完整| 有坂深雪av一区二区精品| 亚洲视频一区二区在线| 亚洲色欲色欲www| 综合在线观看色| 亚洲人快播电影网| 亚洲欧美日韩人成在线播放| 亚洲视频狠狠干| 日韩理论片一区二区| 亚洲三级久久久| 亚洲一区电影777| 亚洲成人黄色影院| 日韩专区中文字幕一区二区| 免费精品视频在线| 国产一区久久久| 成人午夜私人影院| 色av一区二区| 欧美视频一区二区三区四区 | 精品一区二区av| 丝袜诱惑亚洲看片| 美女视频网站久久| 国产乱妇无码大片在线观看| 国产成人免费网站| www.欧美精品一二区| 一本大道av一区二区在线播放| 久久精品亚洲精品国产欧美kt∨| 久久看人人爽人人| 综合中文字幕亚洲| 日韩国产精品大片| 国产综合色精品一区二区三区| 国产中文字幕精品| 91亚洲午夜精品久久久久久| 88在线观看91蜜桃国自产| 日韩欧美一级特黄在线播放| 国产婷婷色一区二区三区四区| 亚洲免费观看视频| 久久精品国产网站| 91丝袜国产在线播放| 欧美日本一道本| 久久久不卡网国产精品一区| 国产精品电影一区二区| 日韩精品成人一区二区在线| 久久不见久久见免费视频1| 国产成人av一区二区| 色先锋久久av资源部| 麻豆精品视频在线| 国产一区福利在线| 91黄色免费版| 久久综合中文字幕| 亚洲免费av网站| 精品一区二区三区免费毛片爱| 波多野结衣在线一区| 欧美美女bb生活片| 中文字幕欧美日韩一区| 亚洲va韩国va欧美va| 国产一区视频网站| 欧美日本一区二区在线观看| 国产精品三级av在线播放| 五月综合激情网| av在线播放成人| 日韩欧美国产一区二区三区| 亚洲欧美国产毛片在线| 久久99精品国产| 在线精品视频免费播放| 久久久精品影视| 日本女优在线视频一区二区| 99re这里只有精品6| 久久夜色精品国产欧美乱极品| 亚洲国产精品久久人人爱| 国内精品免费**视频| 日韩一区二区在线看片| 亚洲色图欧洲色图婷婷| 国产精品996| 国产欧美一区二区精品久导航| 亚州成人在线电影| 日韩欧美高清在线| 亚洲高清一区二区三区| av在线不卡免费看| 国产欧美日韩在线观看| 韩国成人精品a∨在线观看| 欧美精品少妇一区二区三区| 亚洲柠檬福利资源导航| 北条麻妃一区二区三区| 久久久电影一区二区三区| 毛片av一区二区三区| 7799精品视频| 亚洲一区av在线| 99久精品国产| 中文字幕一区二区三区不卡在线| 极品尤物av久久免费看| 欧美日韩国产综合一区二区| 日本一区二区视频在线观看| 美女mm1313爽爽久久久蜜臀| 欧美日本韩国一区| 亚洲女人****多毛耸耸8| 国产99久久久久久免费看农村| 欧美精品一区二区三区一线天视频| 亚洲午夜电影网| 91久久精品一区二区三区| 欧美国产欧美综合| 久草精品在线观看| 欧美成人激情免费网| 日本不卡一区二区| 91成人在线精品| 久久综合给合久久狠狠狠97色69| 一区二区三区不卡视频| 色综合久久综合网| 亚洲视频一二三区| 不卡视频免费播放| 一区二区三区在线免费观看| 成人午夜电影久久影院| 久久久国产精华| 国产大陆亚洲精品国产| 久久伊99综合婷婷久久伊| 激情综合网av| 精品国产三级a在线观看| 久久国产综合精品| 日韩精品在线看片z| 国产91精品久久久久久久网曝门| 久久综合久久综合九色| 国产乱色国产精品免费视频| 精品成人一区二区三区| 日韩黄色片在线观看| 欧美zozozo| 国产麻豆精品theporn| 国产亚洲婷婷免费| 丁香网亚洲国际| 亚洲欧美影音先锋| 欧美在线一二三| 免费在线观看不卡| 久久婷婷色综合| 成人综合激情网| 国产网站一区二区三区| 99re在线精品| 亚洲国产色一区| 日韩欧美aaaaaa| 99国产精品久久久| 五月天久久比比资源色| 日韩免费观看高清完整版| 日本欧美肥老太交大片| 国产精品麻豆一区二区| 在线观看欧美黄色| 青青草视频一区| 欧美成人性战久久| 91亚洲国产成人精品一区二区三| 一二三四社区欧美黄| 欧美一区二区三级| 韩国毛片一区二区三区| 亚洲综合色在线| 日韩欧美中文一区| 处破女av一区二区| 亚洲精品成人悠悠色影视| 久久免费视频一区| 日本久久精品电影| 久久99国产精品麻豆| 精品国产精品网麻豆系列|