Skip to content

Commit fcfc606

Browse files
Fix bug where images with width or height 1 are being completely cleared by image effects
1 parent 49b1403 commit fcfc606

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Built using Godot 3.5.2
3333
- The same frames are no longer being exported multiple times when "Selected frames" is selected, and multiple cels of the same frames are currently selected on the timeline. [#1001](https://github.com/Orama-Interactive/Pixelorama/issues/1001)
3434
- Fixed crash due to division by zero when locking two or three ValueSliders, and one of them has the value of 0 and the user attempts to change it.
3535
- Fixed exporting selected layers not including the non-selected frames.
36+
- Fix bug where images with width or height 1 are being completely cleared by image effects.
3637
- Made the color picker not select fully transparent pixels that are not black. [#999](https://github.com/Orama-Interactive/Pixelorama/issues/999)
3738
- The ellipse tool no longer produces gaps with large sizes. [4f3a7a305a264e0d2fe86c201af76eca4b2fea0a](https://github.com/Orama-Interactive/Pixelorama/commit/4f3a7a305a264e0d2fe86c201af76eca4b2fea0a)
3839
- Fix "visible layers" option on the export dialog producing wrong results. [346d1f071a8c6b1defb1072d39aea9c642f1ef59](https://github.com/Orama-Interactive/Pixelorama/commit/346d1f071a8c6b1defb1072d39aea9c642f1ef59)

src/Classes/ShaderImageEffect.gd

+14
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ signal done
66

77
func generate_image(img: Image, shader: Shader, params: Dictionary, size: Vector2) -> void:
88
img.unlock()
9+
var resized_width := false
10+
var resized_height := false
11+
if size.x == 1:
12+
size.x = 2
13+
img.crop(2, img.get_height())
14+
resized_width = true
15+
if size.y == 1:
16+
size.y = 2
17+
img.crop(img.get_width(), 2)
18+
resized_height = true
919
# duplicate shader before modifying code to avoid affecting original resource
1020
shader = shader.duplicate()
1121
shader.code = shader.code.replace("unshaded", "unshaded, blend_premul_alpha")
@@ -42,4 +52,8 @@ func generate_image(img: Image, shader: Shader, params: Dictionary, size: Vector
4252
VisualServer.free_rid(texture)
4353
viewport_texture.convert(Image.FORMAT_RGBA8)
4454
img.copy_from(viewport_texture)
55+
if resized_width:
56+
img.crop(img.get_width() - 1, img.get_height())
57+
if resized_height:
58+
img.crop(img.get_width(), img.get_height() - 1)
4559
emit_signal("done")

0 commit comments

Comments
 (0)