The reader is labeled :
- on the front : RF ID Reader
- on the back : D302 EM Card Encoder MADE IN CHINA
This reader / writer should Work with cards : EM4305 and T5567.
<?php | |
/*! @class SocketServer | |
@author Navarr Barnier | |
@abstract A Framework for creating a multi-client server using the PHP language. | |
*/ | |
class SocketServer | |
{ | |
/*! @var config | |
@abstract Array - an array of configuration information used by the server. | |
*/ |
angular.module('demo').service('imageService', function ($http, $q, $timeout) { | |
var NUM_LOBES = 3 | |
var lanczos = lanczosGenerator(NUM_LOBES) | |
// resize via lanczos-sinc convolution | |
this.resize = function (img, width, height) { | |
var self = { } | |
self.type = "image/png" | |
self.quality = 1.0 |