-
```js
function removeImageBlanks(imageObject) {
let imgWidth = imageObject.width;
let imgHeight = imageObject.height;
var canvas = document.createElement("canvas");
canvas.setAttribute("w…
-
#1629 is about WebGL, it will likely take a lot of time to implement.
I think add **OffscreenCanvas & CanvasRenderingContext2D** interface at first is a good idea for now.
A lot of server-side image…
-
Reported on the forum: https://groups.google.com/forum/?hl=en#!topic/cesium-dev/7Bda_BkaJMU
The canvas used for the image material is updating, but the rectangle itself does not. It's because we o…
-
Hi, I'm looking to draw an image into an `mmap`ped file, I'm not entirely sure where to go.
```rust
let mut canvas = Canvas::new(Vector2F::new(dimensions.0 as f32, dimensions.1 as f32));
let mut…
-
# Bug Report
According to [MDN docs](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/reset) and [HTML Standard](https://html.spec.whatwg.org/multipage/canvas.html#dom-cont…
-
```
What steps will reproduce the problem?
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");
var y = 10;
var x = 50;
function A() {
this.text = "Hello";
…
-
### Current Behavior
If `Filter#blendMode` is an advanced blend mode, the filter renders as if set to `'normal'`.
### Expected Behavior
If `Filter#blendMode` is an advanced blend mode, the filter r…
-
Hi, i made folllowing code:
```javascript
useEffect(() => {
const canvas = canvasRef.current;
if (canvas === null) return;
canvas.width = canvasWidth;
canva…
-
```
Currently the Selection tool uses an off-screen Canvas element for
buffering the selected pixels. From the said buffer, the pixels are copied
and scaled using the drawImage method onto the desti…
-
### Current Behavior
Advanced blend modes don't work in combination with filters.
![image](https://github.com/pixijs/pixijs/assets/31905376/3db3554a-161d-4495-a0e3-6fd33955bb08)
### Expecte…