You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, what you can do is to create a temp canvas and transpose it to the original canvas as follows:
`var tempCanvas = document.createElement('canvas');
tempCanvas.width = scaledW;
tempCanvas.height = scaledH;
When manipulating PNG images with transparency, you can see a duplicate of the image that is scaled down:
Any suggestions on how to fix this? Thanks!
The text was updated successfully, but these errors were encountered: