Code Monkey home page Code Monkey logo

Comments (4)

kleisauke avatar kleisauke commented on July 30, 2024 1

The VIPS_WARNING environment variable is supposed to suppress these warning messages, for example:

const vips = await Vips({
  preRun: (module) => {
    // Hide warning messages
    module.ENV.VIPS_WARNING = 1;
  }
});

const im = vips.Image.newFromFile('x.avif');
im.writeToFile('x.png');

// Memory management
im.delete();

But, for some reason, it doesn't work for warnings emitted from side modules (i.e. vips-heif.wasm), which is curious.

I spent a couple of hours debugging to no avail, when I build wasm-vips without loadable modules, i.e.:

$ npm run build -- --disable-modules

The above program just works. πŸ€·β€β™‚οΈ

For now, I can recommend this workaround:

// Empty log handler
const log = (type, text) => void 0; // Or: console.log(`${type}: ${text}`);
const vips = await Vips({
  print: (text) => log('stdout', text),
  printErr: (text) => log('stderr', text),
});

from wasm-vips.

kleisauke avatar kleisauke commented on July 30, 2024 1

v0.0.8 is now available and provides libvips v8.15.2.

from wasm-vips.

kleisauke avatar kleisauke commented on July 30, 2024

Hi @swissspidy,

It's safe to ignore this warning in this case. Upstream PR libvips/libvips#3834 would remove this redundant warning.

Weird thing is that this is a PNG / AVIF situation, so not sure why HEIF would be involved here.

HEIF is a container, which supports HEVC and AV1 codecs used to create HEIC and AVIF images respectively. libvips leverages libheif to load/save these images.

from wasm-vips.

swissspidy avatar swissspidy commented on July 30, 2024

Understood, thanks!

Is there a way to set the desired log level to hide info/warning/error messages?

from wasm-vips.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.