gitextract_x_d7l3ph/ ├── .github/ │ └── workflows/ │ └── node.js.yml ├── .gitignore ├── .npmignore ├── History.md ├── README.md ├── examples/ │ ├── append.js │ ├── background.js │ ├── bitdepth.js │ ├── blur.js │ ├── changeFormat.js │ ├── charcoal.js │ ├── chop.js │ ├── colorize.js │ ├── colors.js │ ├── comment.js │ ├── compare.js │ ├── contrast.js │ ├── crop.js │ ├── cycle.js │ ├── despeckle.js │ ├── dither.js │ ├── drawing.js │ ├── edge.js │ ├── emboss.js │ ├── enhance.js │ ├── equalize.js │ ├── extent.js │ ├── flatten.js │ ├── flip.js │ ├── flop.js │ ├── gamma.js │ ├── getters.js │ ├── gravity.js │ ├── implode.js │ ├── label.js │ ├── limit.js │ ├── lower.js │ ├── magnify.js │ ├── median.js │ ├── minify.js │ ├── modulate.js │ ├── monochrome.js │ ├── morph.js │ ├── negative.js │ ├── new.js │ ├── noise1.js │ ├── noise2.js │ ├── paint.js │ ├── quality.js │ ├── raise.js │ ├── region.js │ ├── resample.js │ ├── resize.js │ ├── roll.js │ ├── rotate.js │ ├── scale.js │ ├── sepia.js │ ├── sharpen.js │ ├── size.js │ ├── solarize.js │ ├── source_buffer.js │ ├── spread.js │ ├── swirl.js │ ├── thumb.js │ ├── thumbExact.js │ └── thumbnail.js ├── index.js ├── lib/ │ ├── args.js │ ├── command.js │ ├── compare.js │ ├── composite.js │ ├── convenience/ │ │ ├── autoOrient.js │ │ ├── morph.js │ │ ├── sepia.js │ │ └── thumb.js │ ├── convenience.js │ ├── drawing.js │ ├── getters.js │ ├── montage.js │ ├── options.js │ └── utils.js ├── package.json └── test/ ├── 109.js ├── 118.js ├── 393.js ├── 417.js ├── 422.js ├── 429.js ├── 68.js ├── 70.js ├── 78.js ├── alpha.js ├── append.js ├── arc.js ├── autoOrient.js ├── autoOrientAll.js ├── autoOrientAndThumb.js ├── autoOrientStream.js ├── background.js ├── bezier.js ├── bitdepth.js ├── blur.js ├── changeFormat.js ├── charcoal.js ├── chop.js ├── circle.js ├── colorize.js ├── colors.js ├── comment.js ├── compare.js ├── composite.js ├── contrast.js ├── crop.js ├── cycle.js ├── densityGm.js ├── despeckle.js ├── dispose.js ├── dither.js ├── edge.js ├── ellipse.js ├── emboss.js ├── enhance.js ├── equalize.js ├── extent.js ├── flatten.js ├── flip.js ├── flop.js ├── fromBuffer.js ├── gamma.js ├── geometry.js ├── getterColor.js ├── getterDepth.js ├── getterFilesize.js ├── getterFormat.js ├── getterFormatGIF.js ├── getterIdentify.js ├── getterIptc.js ├── getterMultipleIptc.js ├── getterRes.js ├── getterSize.js ├── gh-17.js ├── gifFrame.js ├── gifFrameIdentify.js ├── gifFrameStream.js ├── gravity.js ├── implode.js ├── index.js ├── inputIs.js ├── interlace.js ├── label.js ├── limit.js ├── line.js ├── lower.js ├── magnify.js ├── median.js ├── minify.js ├── minifyIM.js ├── modulate.js ├── monochrome.js ├── montage.js ├── morph-more.js ├── morph.js ├── negative.js ├── new.js ├── newImage.js ├── noise1.js ├── noise2.js ├── options.js ├── paint.js ├── polygon.js ├── polyline.js ├── quality.js ├── raise.js ├── rectangle.js ├── region.js ├── repagePlus.js ├── resample.js ├── resize.js ├── resizeAndAutoOrientFromBuffer.js ├── resizeBuffer.js ├── resizeWrong.js ├── roll.js ├── rotate.js ├── scale.js ├── selectFrame.js ├── sepia.js ├── setFormat.js ├── sharpen.js ├── solarize.js ├── spread.js ├── streamIn.js ├── streamInGetter.js ├── streamInOut.js ├── streamOut.js ├── streamOutFormat.js ├── strip.js ├── subclass.js ├── swirl.js ├── text.js ├── thumb.js ├── thumbnail.js ├── timeout.js ├── toBuffer.js ├── toBufferFormat.js ├── utils.js └── webp.js