card.io

Make view cover full screen using CGRectMake

人走茶凉 提交于 2019-12-01 18:52:48
I'm creating a view (using card.io), and I want the view to cover the full screen. Its only covering about 2/3rds of the screen atm. Heres the code: CardIOView *cardIOView = [[CardIOView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width,self.view.frame.size.height)]; Here is an example Dave from card.io here. When you create a CardIOView , its frame will take on whatever size you set. However, the camera view within the (transparent) CardIOView will have the standard iOS camera form factor of 4:3. So if the CardIOView is 320 points wide, then its camera view will be ~426 points

remove/hide card.io/paypal logo android

北城余情 提交于 2019-12-01 07:34:19
I am integrating Card.io in my android app and I want to remove the paypal logo. I searched stackoverflow and got to know the usage of EXTRA_USE_CARDIO_LOGO. Setting this to true or false, shows either Paypal or Card.io logo. My client requires that there should be no logo at all. Any help? Update on this answer - as of 4.0+, card.io now supports full removal of the card.io logo with EXTRA_HIDE_CARDIO_LOGO . Josh from card.io here. There is no way to entirely disable logos. Jeff Brateman's answer above is partly correct. The PayPal logo is actually shown in 2 places, the card scanning view and

What card types are recognized by card.io? Does card.io support recognizing merchant cards?

瘦欲@ 提交于 2019-12-01 05:49:07
There is no documentation for card.io that I can find other than source comments. The CardIOCreditCardInfo.h file has an enum for CardIOCreditCardType. typedef NS_ENUM(NSInteger, CardIOCreditCardType) { /// Deprecated. /// @see CardIOCreditCardTypeUnrecognized, CardIOCreditCardTypeAmbiguous CardIOCreditCardTypeUnknown __attribute__((deprecated("Use CardIOCreditCardTypeUnrecognized or CardIOCreditCardTypeAmbiguous instead."))) = 0, /// The card number does not correspond to any recognizable card type. CardIOCreditCardTypeUnrecognized = 0, /// The card number corresponds to multiple card types

Detecting the National ID card and getting the details

放肆的年华 提交于 2019-11-28 16:25:12
I am trying to detect the National ID of the below type and get the details of it, For example the location of the signature should be found at the top right corner of the persons image, in this case "BC". I need to do this application in iphone. I thought of using Opencv for it but how can I achieve the marked details? Do I need to train the application with similar kind Cards or OCR could help? Is there any specific implementations for mobile applications? I also gone through card-io which detects the credit card details, does Card-io detects the other card details also? Update: I have used

Detecting the National ID card and getting the details

做~自己de王妃 提交于 2019-11-27 09:44:37
问题 I am trying to detect the National ID of the below type and get the details of it, For example the location of the signature should be found at the top right corner of the persons image, in this case "BC". I need to do this application in iphone. I thought of using Opencv for it but how can I achieve the marked details? Do I need to train the application with similar kind Cards or OCR could help? Is there any specific implementations for mobile applications? I also gone through card-io which