pixeli 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,6 +84,7 @@ const layImagesInGrid = async (opts) => {
84
84
 
85
85
  // Create canvas
86
86
  const canvas = sharp({
87
+ limitInputPixels: false,
87
88
  create: {
88
89
  width: canvasWidth,
89
90
  height: canvasHeight,
@@ -24,6 +24,7 @@ export const buildHorizontalMasonry = async (images, params) => {
24
24
 
25
25
  const createMasonryLayout = async (rows, rowHeight, canvasWidth, canvasHeight, canvasColor, gap, hAlign) => {
26
26
  const canvas = sharp({
27
+ limitInputPixels: false,
27
28
  create: {
28
29
  width: canvasWidth,
29
30
  height: canvasHeight,
@@ -30,6 +30,7 @@ const createMasonryLayout = async (cols, columnWidth, canvasWidth, canvasHeight,
30
30
  const composites = [];
31
31
 
32
32
  const canvas = sharp({
33
+ limitInputPixels: false,
33
34
  create: {
34
35
  width: canvasWidth,
35
36
  height: canvasHeight,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixeli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A lightweight command-line tool for merging multiple images into customizable grid layouts.",
5
5
  "homepage": "https://github.com/pakdad-mousavi/pixeli#readme",
6
6
  "bugs": {