1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**
- * @author Ge0rg3 [georgeomnet+cyberchef@gmail.com]
- * @copyright Crown Copyright 2019
- * @license Apache-2.0
- */
- import Operation from "../Operation.mjs";
- import OperationError from "../errors/OperationError.mjs";
- import { isImage } from "../lib/FileType.mjs";
- import jimp from "jimp";
- import {RGBA_DELIM_OPTIONS} from "../lib/Delim.mjs";
- /**
- * Extract RGBA operation
- */
- class ExtractRGBA extends Operation {
- /**
- * ExtractRGBA constructor
- */
- constructor() {
- super();
- this.name = "Extract RGBA";
- this.module = "Image";
- this.description = "Extracts each pixel's RGBA value in an image. These are sometimes used in Steganography to hide text or data.";
- this.infoURL = "https://wikipedia.org/wiki/RGBA_color_space";
- this.inputType = "ArrayBuffer";
- this.outputType = "string";
- this.args = [
- {
- name: "Delimiter",
- type: "editableOption",
- value: RGBA_DELIM_OPTIONS
- },
- {
- name: "Include Alpha",
- type: "boolean",
- value: true
- }
- ];
- }
- /**
- * @param {ArrayBuffer} input
- * @param {Object[]} args
- * @returns {string}
- */
- async run(input, args) {
- if (!isImage(input)) throw new OperationError("Please enter a valid image file.");
- const delimiter = args[0],
- includeAlpha = args[1],
- parsedImage = await jimp.read(input);
- let bitmap = parsedImage.bitmap.data;
- bitmap = includeAlpha ? bitmap : bitmap.filter((val, idx) => idx % 4 !== 3);
- return bitmap.join(delimiter);
- }
- }
- export default ExtractRGBA;
|