next-blurhash-previews 0.0.3-beta25 → 0.0.3-beta28
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.
package/bin/generateBlurhash.js
CHANGED
@@ -21,10 +21,17 @@ export async function getBlurhash(path) {
|
|
21
21
|
const blurhashImage = await getSharpImage(path);
|
22
22
|
const dimensions = await blurhashImage.metadata();
|
23
23
|
|
24
|
-
|
24
|
+
let { width, height } = dimensions;
|
25
|
+
|
26
|
+
if (width > 200) {
|
27
|
+
let newMetadata = await blurhashImage.resize(200).metadata();
|
28
|
+
width = newMetadata.width;
|
29
|
+
height = newMetadata.height;
|
30
|
+
}
|
25
31
|
|
26
32
|
return new Promise((res, rej) => {
|
27
33
|
blurhashImage
|
34
|
+
.resize(Math.min(width))
|
28
35
|
.raw()
|
29
36
|
.ensureAlpha()
|
30
37
|
.toBuffer((err, buffer) => {
|
@@ -49,18 +49,23 @@ class ImageWithPreview extends HTMLElement {
|
|
49
49
|
}
|
50
50
|
|
51
51
|
#imgLoad = () => {
|
52
|
-
this.sd.innerHTML = `<slot name="image"></slot>`;
|
52
|
+
//this.sd.innerHTML = `<slot name="image"></slot>`;
|
53
53
|
};
|
54
54
|
|
55
55
|
attributeChangedCallback(name) {
|
56
56
|
if (this.#canvasEl && name === "preview") {
|
57
|
-
this.#updatePreview();
|
57
|
+
const time = this.#updatePreview();
|
58
|
+
console.log(this.getAttribute("preview"), this.getAttribute("url"), time);
|
58
59
|
}
|
59
60
|
}
|
60
61
|
|
61
62
|
#updatePreview() {
|
62
63
|
const previewObj = JSON.parse(this.getAttribute("preview")!);
|
64
|
+
|
65
|
+
const start = +new Date();
|
63
66
|
updateBlurHashPreview(this.#canvasEl, previewObj);
|
67
|
+
const end = +new Date();
|
68
|
+
return end - start;
|
64
69
|
}
|
65
70
|
}
|
66
71
|
|
package/imagePreviewBootstrap.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { createElement } from "react";
|
2
2
|
|
3
3
|
export const imagePreviewBootstrap = createElement("script", {
|
4
|
-
dangerouslySetInnerHTML: { __html: `(() => { "use strict";const P=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","#","$","%","*","+",",","-",".",":",";","=","?","@","[","]","^","_","{","|","}","~"],u=t=>{let e=0;for(let s=0;s<t.length;s++){const n=t[s],r=P.indexOf(n);e=e*83+r}return e},
|
4
|
+
dangerouslySetInnerHTML: { __html: `(() => { "use strict";const P=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","#","$","%","*","+",",","-",".",":",";","=","?","@","[","]","^","_","{","|","}","~"],u=t=>{let e=0;for(let s=0;s<t.length;s++){const n=t[s],r=P.indexOf(n);e=e*83+r}return e},b=t=>{let e=t/255;return e<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)},M=t=>{let e=Math.max(0,Math.min(1,t));return e<=.0031308?Math.round(e*12.92*255+.5):Math.round((1.055*Math.pow(e,.4166666666666667)-.055)*255+.5)},R=t=>t<0?-1:1,p=(t,e)=>R(t)*Math.pow(Math.abs(t),e);class q extends Error{constructor(e){super(e),this.name="ValidationError",this.message=e}}const D=t=>{if(!t||t.length<6)throw new q("The blurhash string must be at least 6 characters");const e=u(t[0]),s=Math.floor(e/9)+1,n=e%9+1;if(t.length!==4+2*n*s)throw new q(\`blurhash length mismatch: length is \${t.length} but it should be \${4+2*n*s}\`)},L=t=>{const e=t>>16,s=t>>8&255,n=t&255;return[b(e),b(s),b(n)]},G=(t,e)=>{const s=Math.floor(t/361),n=Math.floor(t/19)%19,r=t%19;return[p((s-9)/9,2)*e,p((n-9)/9,2)*e,p((r-9)/9,2)*e]},I=(t,e,s,n)=>{D(t),n=n|1;const r=u(t[0]),a=Math.floor(r/9)+1,c=r%9+1,y=(u(t[1])+1)/166,d=new Array(c*a);for(let o=0;o<d.length;o++)if(o===0){const i=u(t.substring(2,6));d[o]=L(i)}else{const i=u(t.substring(4+o*2,6+o*2));d[o]=G(i,y*n)}const l=e*4,h=new Uint8ClampedArray(l*s);for(let o=0;o<s;o++)for(let i=0;i<e;i++){let v=0,x=0,C=0;for(let g=0;g<a;g++)for(let m=0;m<c;m++){const f=Math.cos(Math.PI*i*m/e)*Math.cos(Math.PI*o*g/s);let w=d[m+g*c];v+=w[0]*f,x+=w[1]*f,C+=w[2]*f}let A=M(v),B=M(x),E=M(C);h[4*i+0+o*l]=A,h[4*i+1+o*l]=B,h[4*i+2+o*l]=E,h[4*i+3+o*l]=255}return h};class T extends HTMLElement{sd;mo;static observedAttributes=["preview"];get#t(){return this.querySelector("img")}get#e(){return this.querySelector("canvas")}constructor(){super(),this.sd=this.attachShadow({mode:"open"}),this.sd.innerHTML='<slot name="preview"></slot>'}#s=()=>{if(this.#t&&this.#e)return this.mo?.disconnect(),this.#t.complete?this.#n():(this.#o(),this.#t.addEventListener("load",this.#n)),!0};connectedCallback(){this.#s()||(this.mo=new MutationObserver(this.#s),this.mo.observe(this,{subtree:!0,childList:!0,attributes:!1}))}#n=()=>{};attributeChangedCallback(e){if(this.#e&&e==="preview"){const s=this.#o();console.log(this.getAttribute("preview"),this.getAttribute("url"),s)}}#o(){const e=JSON.parse(this.getAttribute("preview")),s=+new Date;return O(this.#e,e),+new Date-s}}customElements.get("blurhash-image")||customElements.define("blurhash-image",T);function O(t,e){const{w:s,h:n}=e;t.width=s,t.height=n;const r=I(e.blurhash,s,n),a=t.getContext("2d"),c=a.createImageData(s,n);c.data.set(r),a.putImageData(c,0,0)} })();` },
|
5
5
|
});
|