Skip to content

Instantly share code, notes, and snippets.

@JeremyLikness
Created March 19, 2016 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeremyLikness/0065afcfc3da25916b9b to your computer and use it in GitHub Desktop.
Save JeremyLikness/0065afcfc3da25916b9b to your computer and use it in GitHub Desktop.
<div class="column">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" [attr.width]="canvasWidth" [attr.height]="canvasHeight">
<rect x="0" y="0" [attr.width]="canvasWidth" [attr.height]="canvasHeight"
style="fill:white;"/>
<rect *ngFor="#pixel of pixelBuffer" [attr.x]="pixel.x" [attr.y]="pixel.y"
[attr.width]="pixel.width" [attr.height]="pixel.height" [style.fill]="pixel.fill"/>
</svg>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment