Git Product home page Git Product logo

p25-blue-bamboo-drawing's Introduction

CMP25Drawing

This is a quick implementation to draw lines from points to the Blue Bamboo P25 printer. You can use this to draw line images to the P25. An example of usage:

-(void)addSignatureFromPoints:(NSArray*)sigPoints
{
    uint16_t x = 0X19;
    uint16_t y = 0X46;
    
    printBuffer[bufferPtr++] = 0x1B;  // COMMAND
    printBuffer[bufferPtr++] = 0X58;  // COMMAND
    printBuffer[bufferPtr++] = 0X34;  // COMMAND
    printBuffer[bufferPtr++] = x;  // X
    printBuffer[bufferPtr++] = y;  // Y
    
    CMP25Drawing *drawing = [[CMP25Drawing alloc] init];
    [drawing startDrawingWithSize:CGSizeMake(x, y)];
    
    int pointsDrawn = 0;
    BOOL beginNewPath = NO;
    for (NSValue *val in sigPoints)
    {
        CGPoint pt = [val CGPointValue];
        if (pt.y > 60000)
        {
            beginNewPath = YES;
            continue;
        }

        if (!pointsDrawn || beginNewPath)
        {
            [drawing moveToPoint:pt];
            beginNewPath = NO;
        }
        else
        {
            [drawing addLineTo:pt];
        }
        
        pointsDrawn++;
        
    }
    
    NSArray *nums = [drawing stopDrawing];
    for (NSNumber *num in nums)
    {
        int n = [num intValue];
        printBuffer[bufferPtr++] = n;
    }

}

This example method is in my class that handles the P25 printing. The argument sigPoints is an array of NSValue CGPoints that make up the signature

p25-blue-bamboo-drawing's People

Contributors

chrismanahan avatar

Stargazers

pranay sharma avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.