本篇文章给大家谈谈最新mpos款式图片,以及mpos标准版对应的知识点,希望对各位有所帮助,办理pos机请添加微信18127011016

本文目录一览:

  • 1、怎样用自动化测左右滑动的imageview
  • 《最新mpos款式图片》mpos标准版
2、在MFC中,如何读取外部的位图文件,让它显示在图片控件(Picture Control)中?
  • 3、Mpos刷卡和移动pos刷卡有什么区别?哪种好用?

怎样用自动化测左右滑动的imageview

P /PPSTRONG然后是具体的布局文件及代码实现:/STRONG/PPmain.xml:/P ?xml version="1.0" encoding="utf-8"? LinearLayout xmlns:android="" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#FFFFFF" android:orientation="vertical" RelativeLayout android:layout_width="fill_parent" android:layout_height="40dip" android:background="@drawable/title_bk" ImageButton android:id="@+id/btn_back" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/btn_back_selector" android:src="@drawable/btn_back" / View android:id="@+id/line0" android:layout_width="1px" android:layout_height="fill_parent" android:layout_toRightOf="@id/btn_back" android:background="#aa11264f" / View android:layout_width="1px" android:layout_height="fill_parent" android:layout_toRightOf="@id/line0" android:background="#009ad6" / TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="优酷客户端" android:textColor="#FFFFFF" android:textSize="20sp" / /RelativeLayout FrameLayout android:layout_width="fill_parent" android:layout_height="140dip" android.support.v4.view.ViewPager android:id="@+id/vp" android:layout_width="fill_parent" android:layout_height="fill_parent" / LinearLayout android:layout_width="fill_parent" android:layout_height="35dip" android:layout_gravity="bottom" android:background="#33000000" android:gravity="center" android:orientation="vertical" TextView android:id="@+id/tv_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="中国家庭院校园区域名字体现" android:textColor="#ffffff" / LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="3dip" android:gravity="center" View android:id="@+id/v_dot0" style="@style/dot_style" android:background="@drawable/dot_focused" / View android:id="@+id/v_dot1" style="@style/dot_style" / View android:id="@+id/v_dot2" style="@style/dot_style" / View android:id="@+id/v_dot3" style="@style/dot_style" / View android:id="@+id/v_dot4" style="@style/dot_style" / /LinearLayout /LinearLayout /FrameLayout /LinearLayout

MyViewPagerActivity:

package com.tony.viewpager; import java.util.ArrayList; import java.util.List; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Parcelable; import android.support.v4.view.PagerAdapter; import android.support.v4.view.ViewPager; import android.support.v4.view.ViewPager.OnPageChangeListener; import android.view.View; import android.widget.ImageView; import android.widget.ImageView.ScaleType; import android.widget.TextView; /** * 仿优酷Android客户端图片左右滑动 * */ public class MyViewPagerActivity extends Activity { private ViewPager viewPager; // android-support-v4中的滑动组件 private ListImageView imageViews; // 滑动的图片集合 private String[] titles; // 图片标题 private int[] imageResId; // 图片ID private ListView dots; // 图片标题正文的那些点 private TextView tv_title; private int currentItem = 0; // 当前图片的索引号 // An ExecutorService that can schedule commands to run after a given delay, // or to execute periodically. private ScheduledExecutorService scheduledExecutorService; // 切换当前显示的图片 private Handler handler = new Handler() { public void handleMessage(android.os.Message msg) { viewPager.setCurrentItem(currentItem);// 切换当前显示的图片 }; }; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); imageResId = new int[] { R.drawable.a, R.drawable.b, R.drawable.c, R.drawable.d, R.drawable.e }; titles = new String[imageResId.length]; titles[0] = "巩俐不低俗,我就不能低俗"; titles[1] = "扑树又回来啦!再唱经典老歌引万人大合唱"; titles[2] = "揭秘北京电影如何升级"; titles[3] = "乐视网TV版大派送"; titles[4] = "热血屌丝的反杀"; imageViews = new ArrayListImageView(); // 初始化图片资源 for (int i = 0; i imageResId.length; i++) { ImageView imageView = new ImageView(this); imageView.setImageResource(imageResId[i]); imageView.setScaleType(ScaleType.CENTER_CROP); imageViews.add(imageView); } dots = new ArrayListView(); dots.add(findViewById(R.id.v_dot0)); dots.add(findViewById(R.id.v_dot1)); dots.add(findViewById(R.id.v_dot2)); dots.add(findViewById(R.id.v_dot3)); dots.add(findViewById(R.id.v_dot4)); tv_title = (TextView) findViewById(R.id.tv_title); tv_title.setText(titles[0]);// viewPager = (ViewPager) findViewById(R.id.vp); viewPager.setAdapter(new MyAdapter());// 设置填充ViewPager页面的适配器 // 设置一个监听器,当ViewPager中的页面改变时调用 viewPager.setOnPageChangeListener(new MyPageChangeListener()); } @Override protected void onStart() { scheduledExecutorService = Executors.newSingleThreadScheduledExecutor(); // 当Activity显示出来后,每两秒钟切换一次图片显示 scheduledExecutorService.scheduleAtFixedRate(new ScrollTask(), 1, 2, TimeUnit.SECONDS); super.onStart(); } @Override protected void onStop() { // 当Activity不可见的时候停止切换 scheduledExecutorService.shutdown(); super.onStop(); } /** * 换行切换任务 * * @author Administrator * */ private class ScrollTask implements Runnable { public void run() { synchronized (viewPager) { System.out.println("currentItem: " + currentItem); currentItem = (currentItem + 1) % imageViews.size(); handler.obtainMessage().sendToTarget(); // 通过Handler切换图片 } } } /** * 当ViewPager中页面的状态发生改变时调用 * * @author Administrator * */ private class MyPageChangeListener implements OnPageChangeListener { private int oldPosition = 0; /** * This method will be invoked when a new page becomes selected. * position: Position index of the new selected page. */ public void onPageSelected(int position) { currentItem = position; tv_title.setText(titles[position]); dots.get(oldPosition).setBackgroundResource(R.drawable.dot_normal); dots.get(position).setBackgroundResource(R.drawable.dot_focused); oldPosition = position; } public void onPageScrollStateChanged(int arg0) { } public void onPageScrolled(int arg0, float arg1, int arg2) { } } /** * 填充ViewPager页面的适配器 * * @author Administrator * */ private class MyAdapter extends PagerAdapter { @Override public int getCount() { return imageResId.length; } @Override public Object instantiateItem(View arg0, int arg1) { ((ViewPager) arg0).addView(imageViews.get(arg1)); return imageViews.get(arg1); } @Override public void destroyItem(View arg0, int arg1, Object arg2) { ((ViewPager) arg0).removeView((View) arg2); } @Override public boolean isViewFromObject(View arg0, Object arg1) { return arg0 == arg1; } @Override public void restoreState(Parcelable arg0, ClassLoader arg1) { } @Override public Parcelable saveState() { return null; } @Override public void startUpdate(View arg0) { } @Override public void finishUpdate(View arg0) { } } }

在MFC中,如何读取外部的位图文件,让它显示在图片控件(Picture Control)中?

告诉你一个最简单的方法,你一定可以的,弄好了记得给我加分.

1.在你的对话框添一个按钮和一个图片控件(Picture Control).

2.添加一个类,我这里上传不了,只能将.h和.cpp复制过来,你再将拷贝到txt里,改一下扩展名就可以了。

这是Picture.h

#if !defined(AFX_PICTURE_H__COPYFREE_BY_YOVAV_GAD__SOURCES_AT_SUPERMAIN_DOT_COM__INCLUDED_)

#define AFX_PICTURE_H__COPYFREE_BY_YOVAV_GAD__SOURCES_AT_SUPERMAIN_DOT_COM__INCLUDED_

#if _MSC_VER 1000

#pragma once

#endif // _MSC_VER 1000

class CPicture

{

public:

void FreePictureData();

BOOL Load(CString sFilePathName);

BOOL Load(UINT ResourceName, LPCSTR ResourceType);

BOOL LoadPictureData(BYTE* pBuffer, int nSize);

BOOL SaveAsBitmap(CString sFilePathName);

BOOL Show(CDC* pDC, CPoint LeftTop, CPoint WidthHeight, int MagnifyX, int MagnifyY);

BOOL Show(CDC* pDC, CRect DrawRect);

BOOL ShowBitmapResource(CDC* pDC, const int BMPResource, CPoint LeftTop);

BOOL UpdateSizeOnDC(CDC* pDC);

CPicture();

virtual ~CPicture();

IPicture* m_IPicture; // Same As LPPICTURE (typedef IPicture __RPC_FAR *LPPICTURE)

LONG m_Height; // Height (In Pixels Ignor What Current Device Context Uses)

LONG m_Weight; // Size Of The Image Object In Bytes (File OR Resource)

LONG m_Width; // Width (In Pixels Ignor What Current Device Context Uses)

};

#endif

这是Picture.cpp

#include "stdafx.h"

#include "Picture.h"

#ifdef _DEBUG

#define new DEBUG_NEW

#undef THIS_FILE

static char THIS_FILE[] = __FILE__;

#endif

#define HIMETRIC_INCH 2540

#define ERROR_TITLE "CPicture Error" // Error Title (Related To This Class)...

//-----------------------------------------------------------------------------

// Does: Constructor - Create a New CPicture Object To Hold Picture Data

// ~~~~

//

//-----------------------------------------------------------------------------

CPicture::CPicture()

//=============================================================================

{

m_IPicture = NULL;

m_Height = 0;

m_Weight = 0;

m_Width = 0;

}

//-----------------------------------------------------------------------------

// Does: Destructor - Free Data And Information From The CPicture Object

// ~~~~

//

//-----------------------------------------------------------------------------

CPicture::~CPicture()

//=============================================================================

{

if(m_IPicture != NULL) FreePictureData(); // Important - Avoid Leaks...

}

//-----------------------------------------------------------------------------

// Does: Free The Allocated Memory That Holdes The IPicture Interface Data

// ~~~~ And Clear Picture Information

//

// Note: This Might Also Be Useful If U Only Need To Show The Picture Once

// ~~~~~ Or If U Copy The Picture To The Device Context, So It Can Still

// Remain On Screen - But IPicture Data Is Not Needed No More

//

//-----------------------------------------------------------------------------

void CPicture::FreePictureData()

//=============================================================================

{

if(m_IPicture != NULL)

{

m_IPicture-Release();

m_IPicture = NULL;

m_Height = 0;

m_Weight = 0;

m_Width = 0;

}

}

//-----------------------------------------------------------------------------

// Does: Open a Resource And Load It Into IPicture (Interface)

// ~~~~ (.BMP .DIB .EMF .GIF .ICO .JPG .WMF)

//

// Note: When Adding a Bitmap Resource It Would Automatically Show On "Bitmap"

// ~~~~ This NOT Good Coz We Need To Load It From a Custom Resource "BMP"

// To Add a Custom Rresource: Import Resource - Open As - Custom

// (Both .BMP And .DIB Should Be Found Under "BMP")

//

// InPut: ResourceName - As a UINT Defined (Example: IDR_PICTURE_RESOURCE)

// ~~~~~ ResourceType - Type Name (Example: "JPG")

//

// OutPut: TRUE If Succeeded...

// ~~~~~~

//-----------------------------------------------------------------------------

BOOL CPicture::Load(UINT ResourceName, LPCSTR ResourceType)

//=============================================================================

{

BOOL bResult = FALSE;

HGLOBAL hGlobal = NULL;

HRSRC hSource = NULL;

LPVOID lpVoid = NULL;

int nSize = 0;

if(m_IPicture != NULL) FreePictureData(); // Important - Avoid Leaks...

hSource = FindResource(AfxGetResourceHandle(), MAKEINTRESOURCE(ResourceName), ResourceType);

if(hSource == NULL)

{

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "FindResource() Failed\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

return(FALSE);

}

hGlobal = LoadResource(AfxGetResourceHandle(), hSource);

if(hGlobal == NULL)

{

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "LoadResource() Failed\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

return(FALSE);

}

lpVoid = LockResource(hGlobal);

if(lpVoid == NULL)

{

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "LockResource() Failed\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

return(FALSE);

}

nSize = (UINT)SizeofResource(AfxGetResourceHandle(), hSource);

if(LoadPictureData((BYTE*)hGlobal, nSize)) bResult = TRUE;

UnlockResource(hGlobal); // 16Bit Windows Needs This

FreeResource(hGlobal); // 16Bit Windows Needs This (32Bit - Automatic Release)

m_Weight = nSize; // Update Picture Size Info...

if(m_IPicture != NULL) // Do Not Try To Read From Memory That Is Not Exist...

{

m_IPicture-get_Height(m_Height);

m_IPicture-get_Width(m_Width);

// Calculate Its Size On a "Standard" (96 DPI) Device Context

m_Height = MulDiv(m_Height, 96, HIMETRIC_INCH);

m_Width = MulDiv(m_Width, 96, HIMETRIC_INCH);

}

else // Picture Data Is Not a Known Picture Type

{

m_Height = 0;

m_Width = 0;

bResult = FALSE;

}

return(bResult);

}

//-----------------------------------------------------------------------------

// Does: Open a File And Load It Into IPicture (Interface)

// ~~~~ (.BMP .DIB .EMF .GIF .ICO .JPG .WMF)

//

// InPut: sFilePathName - Path And FileName Target To Save

// ~~~~~

//

// OutPut: TRUE If Succeeded...

// ~~~~~~

//-----------------------------------------------------------------------------

BOOL CPicture::Load(CString sFilePathName)

//=============================================================================

{

BOOL bResult = FALSE;

CFile PictureFile;

CFileException e;

int nSize = 0;

if(m_IPicture != NULL) FreePictureData(); // Important - Avoid Leaks...

if(PictureFile.Open(sFilePathName, CFile::modeRead | CFile::typeBinary, e))

{

nSize = PictureFile.GetLength();

BYTE* pBuffer = new BYTE[nSize];

if (PictureFile.Read(pBuffer, nSize) 0 ) //从文件读到pBuffer

{ if(LoadPictureData(pBuffer, nSize)) bResult = TRUE; }//接作调用函数读pBuffer

PictureFile.Close();

delete [] pBuffer;

}

else // Open Failed...

{

TCHAR szCause[255];

e.GetErrorMessage(szCause, 255, NULL);

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, szCause, ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

bResult = FALSE;

}

m_Weight = nSize; // Update Picture Size Info...

if(m_IPicture != NULL) // Do Not Try To Read From Memory That Is Not Exist...

{

m_IPicture-get_Height(m_Height);

m_IPicture-get_Width(m_Width);

// Calculate Its Size On a "Standard" (96 DPI) Device Context

m_Height = MulDiv(m_Height, 96, HIMETRIC_INCH);

m_Width = MulDiv(m_Width, 96, HIMETRIC_INCH);

}

else // Picture Data Is Not a Known Picture Type

{

m_Height = 0;

m_Width = 0;

bResult = FALSE;

}

return(bResult);

}

//-----------------------------------------------------------------------------

// Does: Read The Picture Data From a Source (File / Resource)

// ~~~~ And Load It Into The Current IPicture Object In Use

//

// InPut: Buffer Of Data Source (File / Resource) And Its Size

// ~~~~~

//

// OutPut: Feed The IPicture Object With The Picture Data

// ~~~~~~ (Use Draw Functions To Show It On a Device Context)

// TRUE If Succeeded...

//-----------------------------------------------------------------------------

BOOL CPicture::LoadPictureData(BYTE *pBuffer, int nSize)

//=============================================================================

{

BOOL bResult = FALSE;

HGLOBAL hGlobal = GlobalAlloc(GMEM_MOVEABLE, nSize);

if(hGlobal == NULL)

{

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "Can not allocate enough memory\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

return(FALSE);

}

void* pData = GlobalLock(hGlobal);

memcpy(pData, pBuffer, nSize);

GlobalUnlock(hGlobal);

IStream* pStream = NULL;

if(CreateStreamOnHGlobal(hGlobal, TRUE, pStream) == S_OK)

{

HRESULT hr;

if((hr = OleLoadPicture(pStream, nSize, FALSE, IID_IPicture, (LPVOID *)m_IPicture)) == E_NOINTERFACE)

{

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "IPicture interface is not supported\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

return(FALSE);

}

else // S_OK

{

pStream-Release();

pStream = NULL;

bResult = TRUE;

}

}

FreeResource(hGlobal); // 16Bit Windows Needs This (32Bit - Automatic Release)

return(bResult);

}

//-----------------------------------------------------------------------------

// Does: Draw The Loaded Picture Direct To The Client DC

// ~~~~

//

// Note: Bigger OR Smaller Dimentions Than The Original Picture Size

// ~~~~ Will Draw The Picture Streached To Its New Given NEW Dimentions...

//

// InPut: pDC - Given DC To Draw On

// ~~~~~ DrawRect - Dimentions Of The Picture To Draw (As a Rectangle)

//

// OutPut: TRUE If Succeeded...

// ~~~~~~

//-----------------------------------------------------------------------------

BOOL CPicture::Show(CDC *pDC, CRect DrawRect)

//=============================================================================

{

if (pDC == NULL || m_IPicture == NULL) return FALSE;

long Width = 0;

long Height = 0;

m_IPicture-get_Width(Width);

m_IPicture-get_Height(Height);

HRESULT hrP = NULL;

hrP = m_IPicture-Render(pDC-m_hDC,

DrawRect.left, // Left

DrawRect.top, // Top

DrawRect.right - DrawRect.left, // Right

DrawRect.bottom - DrawRect.top, // Bottom

0,

Height,

Width,

-Height,

DrawRect);

if (SUCCEEDED(hrP)) return(TRUE);

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "Can not allocate enough memory\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

return(FALSE);

}

//-----------------------------------------------------------------------------

// Does: Draw The Loaded Picture Direct To The Client DC

// ~~~~

//

// Note: Bigger OR Smaller Dimentions Than The Original Picture Size

// ~~~~ Will Draw The Picture Streached To Its New Given Dimentions...

//

// InPut: pDC - Given DC To Draw On

// ~~~~~ LeftTop - Opening Point To Start Drawing (Left,Top)

// WidthHeight - Dimentions Of The Picture To Draw (Width,Height)

// MagnifyX - Magnify Pixel Width, 0 = Default (No Magnify)

// MagnifyY - Magnify Pixel Height, 0 = Default (No Magnify)

//

// OutPut: TRUE If Succeeded...

// ~~~~~~

//-----------------------------------------------------------------------------

BOOL CPicture::Show(CDC *pDC, CPoint LeftTop, CPoint WidthHeight, int MagnifyX, int MagnifyY)

//=============================================================================

{

if (pDC == NULL || m_IPicture == NULL) return FALSE;

long Width = 0;

long Height = 0;

m_IPicture-get_Width(Width);

m_IPicture-get_Height(Height);

if(MagnifyX == NULL) MagnifyX = 0;

if(MagnifyY == NULL) MagnifyY = 0;

MagnifyX = int(MulDiv(Width, pDC-GetDeviceCaps(LOGPIXELSX), HIMETRIC_INCH) * MagnifyX);

MagnifyY = int(MulDiv(Height,pDC-GetDeviceCaps(LOGPIXELSY), HIMETRIC_INCH) * MagnifyY);

CRect DrawRect(LeftTop.x, LeftTop.y, MagnifyX, MagnifyY);

HRESULT hrP = NULL;

hrP = m_IPicture-Render(pDC-m_hDC,

LeftTop.x, // Left

LeftTop.y, // Top

WidthHeight.x +MagnifyX, // Width

WidthHeight.y +MagnifyY, // Height

0,

Height,

Width,

-Height,

DrawRect);

if(SUCCEEDED(hrP)) return(TRUE);

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "Can not allocate enough memory\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

return(FALSE);

}

//-----------------------------------------------------------------------------

// Does: Saves The Picture That Is Stored In The IPicture Object As a Bitmap

// ~~~~ (Converts From Any Known Picture Type To a Bitmap / Icon File)

//

// InPut: sFilePathName - Path And FileName Target To Save

// ~~~~~

//

// OutPut: TRUE If Succeeded...

// ~~~~~~

//-----------------------------------------------------------------------------

BOOL CPicture::SaveAsBitmap(CString sFilePathName)

//=============================================================================

{

BOOL bResult = FALSE;

ILockBytes *Buffer = 0;

IStorage *pStorage = 0;

IStream *FileStream = 0;

BYTE *BufferBytes;

STATSTG BytesStatistics;

DWORD OutData;

long OutStream;

CFile BitmapFile; CFileException e;

double SkipFloat = 0;

DWORD ByteSkip = 0;

_ULARGE_INTEGER RealData;

CreateILockBytesOnHGlobal(NULL, TRUE, Buffer); // Create ILockBytes Buffer

HRESULT hr = ::StgCreateDocfileOnILockBytes(Buffer,

STGM_SHARE_EXCLUSIVE | STGM_CREATE | STGM_READWRITE, 0, pStorage);

hr = pStorage-CreateStream(L"PICTURE",

STGM_SHARE_EXCLUSIVE | STGM_CREATE | STGM_READWRITE, 0, 0, FileStream);

m_IPicture-SaveAsFile(FileStream, TRUE, OutStream); // Copy Data Stream

FileStream-Release();

pStorage-Release();

Buffer-Flush();

// Get Statistics For Final Size Of Byte Array

Buffer-Stat(BytesStatistics, STATFLAG_NONAME);

// Cut UnNeeded Data Coming From SaveAsFile() (Leave Only "Pure" Picture Data)

SkipFloat = (double(OutStream) / 512); // Must Be In a 512 Blocks...

if(SkipFloat DWORD(SkipFloat)) ByteSkip = (DWORD)SkipFloat + 1;

else ByteSkip = (DWORD)SkipFloat;

ByteSkip = ByteSkip * 512; // Must Be In a 512 Blocks...

// Find Difference Between The Two Values

ByteSkip = (DWORD)(BytesStatistics.cbSize.QuadPart - ByteSkip);

// Allocate Only The "Pure" Picture Data

RealData.LowPart = 0;

RealData.HighPart = 0;

RealData.QuadPart = ByteSkip;

BufferBytes = (BYTE*)malloc(OutStream);

if(BufferBytes == NULL)

{

Buffer-Release();

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, "Can not allocate enough memory\t", ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

}

Buffer-ReadAt(RealData, BufferBytes, OutStream, OutData);

if(BitmapFile.Open(sFilePathName, CFile::typeBinary | CFile::modeCreate | CFile::modeWrite, e))

{

BitmapFile.Write(BufferBytes, OutData);

BitmapFile.Close();

bResult = TRUE;

}

else // Write File Failed...

{

TCHAR szCause[255];

e.GetErrorMessage(szCause, 255, NULL);

HWND hWnd = AfxGetApp()-GetMainWnd()-m_hWnd;

MessageBoxEx(hWnd, szCause, ERROR_TITLE, MB_OK | MB_ICONSTOP, LANG_ENGLISH);

bResult = FALSE;

}

Buffer-Release();

free(BufferBytes);

return(bResult);

}

//-----------------------------------------------------------------------------

// Does: Draw a Bitmap Resource To The Client DC (Using Bitblt())

// ~~~~ It Will Use The Bitmap Resource Original Size (Width And Height)

// (.BMP .DIB)

//

// Note: This Function Is Just Another Simple Way Of Displaying a Bitmap Resource,

// ~~~~ It Is Not Connected With The IPicture Interface And Can Be Used

// As a StandAlone On Any Device Context (Directly)

//

// InPut: BMPResource - Resource Name As Defined In The Resources

// ~~~~~ pDC - Given DC To Draw On

// LeftTop - Opening Point To Start Drawing (Left,Top)

//

// OutPut: TRUE If Succeeded...

// ~~~~~~

//-----------------------------------------------------------------------------

BOOL CPicture::ShowBitmapResource(CDC *pDC, const int BMPResource, CPoint LeftTop)

//=============================================================================

{

if (pDC == NULL) return(FALSE);

CBitmap BMP;

if(BMP.LoadBitmap(BMPResource))

{

// Get Bitmap Details

BITMAP BMPInfo;

BMP.GetBitmap(BMPInfo);

// Create An In-Memory DC Compatible With The Display DC We R Gonna Paint On

CDC DCMemory;

DCMemory.CreateCompatibleDC(pDC);

// Select The Bitmap Into The In-Memory DC

CBitmap* pOldBitmap = DCMemory.SelectObject(BMP);

// Copy Bits From The In-Memory DC Into The On-Screen DC

pDC-BitBlt(LeftTop.x, LeftTop.y, BMPInfo.bmWidth, BMPInfo.bmHeight, DCMemory, 0, 0, SRCCOPY);

DCMemory.SelectObject(pOldBitmap); // (As Shown In MSDN Example...)

}

else

{

TRACE0("ERROR: Can Not Find The Bitmap Resource\n");

return(FALSE);

}

return(TRUE);

}

//-----------------------------------------------------------------------------

// Does: Get The Original Picture Pixel Size (Ignor What Current DC Is Using)

// ~~~~ Pointer To a Device Context Is Needed For Pixel Calculation,

//

// Also Updates The Class's Height And Width Properties,

// (Coz Till Now We Had No Device Context To Work With...96 DPI Assumed)

//

// InPut: The Client DC (Needed To Check The Size Of The Pixels)

// ~~~~~

//

// OutPut: TRUE If Succeeded...

// ~~~~~~

//-----------------------------------------------------------------------------

BOOL CPicture::UpdateSizeOnDC(CDC *pDC)

//=============================================================================

{

if(pDC == NULL || m_IPicture == NULL) { m_Height = 0; m_Width = 0; return(FALSE); };

m_IPicture-get_Height(m_Height);

m_IPicture-get_Width(m_Width);

// Get Current DPI - Dot Per Inch

int CurrentDPI_X = pDC-GetDeviceCaps(LOGPIXELSX);

int CurrentDPI_Y = pDC-GetDeviceCaps(LOGPIXELSY);

// Use a "Standard" Print (When Printing)

if(pDC-IsPrinting())

{

CurrentDPI_X = 96;

CurrentDPI_Y = 96;

}

m_Height = MulDiv(m_Height, CurrentDPI_Y, HIMETRIC_INCH);

m_Width = MulDiv(m_Width, CurrentDPI_X, HIMETRIC_INCH);

return(TRUE);

}

3.在对话框头文件定义:

先包含头文件#include "Picture.h"

再定义

CPicture m_Pic;

4.给按钮的函数里写上:(注意,这个IDC_SHOWPIC)是你那个显示控件的ID号.

CRect rect;

GetDlgItem(IDC_SHOWPIC)-GetWindowRect(rect);

ScreenToClient(rect);

CFile f;

CString FilePathName;

CFileException e;

CFileDialog dlg(TRUE,NULL,NULL,0,_T("All Files (*.*)|*.*|BMP (*.bmp)|*.bmp|DIB (*.dib)|*.dib|EMF (*.emf)|*.emf|GIF (*.gif)|*.gif|ICO (*.ico)|*.ico|JPG (*.jpg)|*.jpg|WMF (*.wmf)|*.wmf||"),NULL);

if(dlg.DoModal()==IDOK)

{

FilePathName=dlg.GetPathName();

if(m_Pic.m_IPicture != NULL) m_Pic.FreePictureData();

m_Pic.Load(FilePathName);

CClientDC dc(this);

m_Pic.UpdateSizeOnDC(dc);

m_Pic.Show(dc, rect);

}

Mpos刷卡和移动pos刷卡有什么区别?哪种好用?

在不考虑手续费费率的情况下,这两类POS机相比较,可谓各有优缺点:

1、在体积方面,手机POS机比便携POS机更小;

2、在刷卡方面,手机POS机感应条小,刷卡的识别率不及便携POS机;

3、在便民方面,手机POS机因为有手机客户端应用,支持转账、还信用卡、充手机话费、帐户余额查询等功能,而移动POS则没有这些功能。

4、费用方面Mpos比传统pos和移动pos费用要低。

5、签购方面:移动pos有纸质签购单,mpos没有纸质签购单,不过在一次金融展会上看到visa使用了济强的vmp02来解决了纸质签购单打印的问题,相信以后也会有纸质签购单。

最新mpos款式图片的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于mpos标准版、最新mpos款式图片的信息别忘了在本站进行查找喔。

本站所有文章资讯、展示的图片素材等内容均为注册用户上传(部分报媒/平媒内容转载自网络合作媒体),仅供学习参考。 用户通过本站上传、发布的任何内容的知识产权归属用户或原始著作权人所有。如有侵犯您的版权,请联系我们反馈本站将在三个工作日内改正。