File Pixelizer.ts
has 289 lines of code (exceeds 250 allowed). Consider refactoring.
* Pixelizer - convert an image to Pixel Art, with/out grayscale and based on a color palette.
* @author José Moreira @ <https://github.com/giventofly/pixelit>
* @author Michael Feher @ <https://github.com/PhearZero>
**/
Function fillColor
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
export function fillColor(image: Color[][], color: Color, position: Position) {
const targetColor = image[position.y][position.x];
if (targetColor.hex === color.hex) return image;
const stack: Position[] = [position];
while (stack.length) {
Function pixelate
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
pixelate() {
const tempCanvas = document.createElement("canvas");
if(!this.drawfrom) throw new Error(DRAWFROM_NOT_DEFINED_MESSAGE)
if(!this.drawto) throw new Error(DRAWTO_NOT_DEFINED_MESSAGE)
Function resizeImage
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
resizeImage() {
if(!this.drawto) throw new Error(DRAWTO_NOT_DEFINED_MESSAGE)
if(!this.ctx) throw new Error(CONTEXT_NOT_DEFINED_MESSAGE)