Convert GIFs with transparency to PNGs with alpha channel

This commit is contained in:
Peter Dell 2023-02-26 14:00:09 +01:00
parent 75781b4089
commit 1c9e603ba5
141 changed files with 60 additions and 60 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 619 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 849 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 832 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 806 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 736 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 351 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 704 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 614 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 892 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 947 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 614 B

View File

@ -91,28 +91,28 @@ public final class HardwareUtility {
String path;
switch (hardware) {
case GENERIC:
path = "hardware-generic-16x16.gif";
path = "hardware-generic-16x16.png";
break;
case APPLE2:
path = "hardware-apple2-16x16.gif";
path = "hardware-apple2-16x16.png";
break;
case ATARI2600:
path = "hardware-atari2600-16x16.gif";
path = "hardware-atari2600-16x16.png";
break;
case ATARI7800:
path = "hardware-atari7800-16x16.gif";
path = "hardware-atari7800-16x16.png";
break;
case ATARI8BIT:
path = "hardware-atari8bit-16x16.gif";
path = "hardware-atari8bit-16x16.png";
break;
case C64:
path = "hardware-c64-16x16.gif";
path = "hardware-c64-16x16.png";
break;
case NES:
path = "hardware-nes-16x16.gif";
path = "hardware-nes-16x16.png";
break;
case TEST:
path = "hardware-test-16x16.gif";
path = "hardware-test-16x16.png";
break;
default:
throw new IllegalArgumentException("Unknown hardware " + hardware + ".");

Binary file not shown.

Before

Width:  |  Height:  |  Size: 863 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

View File

@ -15,7 +15,7 @@
<editor
class="com.wudsn.ide.dsk.apple2.Apple2DiskImageEditor"
default="false"
icon="icons/editor-apple2-disk-image.gif"
icon="icons/editor-apple2-disk-image.png"
id="com.wudsn.ide.dsk.apple2.Apple2DiskImageEditor"
name="%com.wudsn.ide.dsk.apple2.Apple2DiskImageEditor.name">
<contentTypeBinding

Binary file not shown.

Before

Width:  |  Height:  |  Size: 905 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 910 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 796 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 639 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 604 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 802 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 504 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 546 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 763 B

View File

@ -95,7 +95,7 @@
contributorClass="org.eclipse.ui.part.EditorActionBarContributor"
default="true"
extensions="bmp, ico, gif, jpg, png, cnv"
icon="icons/graphics-editor-16x16.gif"
icon="icons/graphics-editor.png"
id="com.wudsn.ide.gfx.editor.GraphicsConversionEditor"
name="%com.wudsn.ide.gfx.editor.GraphicsConversionEditor.name">
<contentTypeBinding
@ -116,7 +116,7 @@
allowMultiple="false"
category="com.wudsn.ide.gfx.editor.GraphicsCategory"
class="com.wudsn.ide.gfx.editor.ImageView"
icon="icons/graphics-editor-16x16.gif"
icon="icons/graphics-editor-16x16.png"
id="com.wudsn.ide.gfx.editor.ImageView"
name="%com.wudsn.ide.gfx.editor.ImageView.name"
restorable="true">
@ -125,7 +125,7 @@
allowMultiple="false"
category="com.wudsn.ide.gfx.editor.GraphicsCategory"
class="com.wudsn.ide.gfx.editor.ImagePaletteView"
icon="icons/graphics-editor-16x16.gif"
icon="icons/graphics-editor-16x16.png"
id="com.wudsn.ide.gfx.editor.ImagePaletteView"
name="%com.wudsn.ide.gfx.editor.ImagePaletteView.name"
restorable="true">

View File

@ -34,10 +34,10 @@ final class Icons {
static {
AbstractIDEPlugin plugin = GraphicsPlugin.getInstance();
FIND_DEFAULT_CONVERTER = plugin.getImage("searchm_obj.gif");
CREATE_CONVERSION = plugin.getImage("graphics-editor-16x16.gif");
REFRESH = plugin.getImage("refresh.gif");
SAVE_IMAGE = plugin.getImage("save_edit.gif");
SAVE_FILES = plugin.getImage("save_edit.gif");
FIND_DEFAULT_CONVERTER = plugin.getImage("searchm_obj.png");
CREATE_CONVERSION = plugin.getImage("graphics-editor-16x16.png");
REFRESH = plugin.getImage("refresh.png");
SAVE_IMAGE = plugin.getImage("save_edit.png");
SAVE_FILES = plugin.getImage("saveall_edit.png");
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 641 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 594 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 740 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 655 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 698 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 614 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 605 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 804 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 581 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 583 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 723 B

View File

@ -161,8 +161,8 @@
locationURI="popup:#HexEditorContext">
<command
commandId="com.wudsn.ide.hex.HexEditorCopyToClipboardCommand"
disabledIcon="icons/copy-disabled.gif"
icon="icons/copy-enabled.gif"
disabledIcon="icons/copy-disabled.png"
icon="icons/copy-enabled.png"
id="com.wudsn.ide.hex.HexEditorCopyToClipboardCommand"
style="push">
</command>
@ -191,15 +191,15 @@
</menu>
<command
commandId="com.wudsn.ide.hex.HexEditorPasteFromClipboardCommand"
icon="icons/paste-enabled.gif"
icon="icons/paste-enabled.png"
id="%com.wudsn.ide.hex.HexEditorPasteFromClipboardCommand.name"
label="%com.wudsn.ide.hex.HexEditorPasteFromClipboardCommand.name"
style="push">
</command>
<command
commandId="com.wudsn.ide.hex.HexEditorSaveSelectionAsCommand"
disabledIcon="icons/save-as-disabled.gif"
icon="icons/save-as-enabled.gif"
disabledIcon="icons/save-as-disabled.png"
icon="icons/save-as-enabled.png"
label="%com.wudsn.ide.hex.HexEditorSaveSelectionAsCommand.name"
style="push">
</command>
@ -212,7 +212,7 @@
<editor
class="com.wudsn.ide.hex.HexEditor"
default="true"
icon="icons/hex-editor-16x16.gif"
icon="icons/hex-editor-16x16.png"
id="com.wudsn.ide.hex.HexEditor"
name="%com.wudsn.ide.hex.HexEditor.name">
</editor>

View File

@ -65,7 +65,7 @@ final class HexEditorContentOutlineLabelProvider extends DelegatingStyledCellLab
super(new HexEditorStyledLabelProvider());
HexPlugin plugin;
plugin = HexPlugin.getInstance();
segmentImage = plugin.getImage("hex-editor-segment-16x16.gif");
segmentImage = plugin.getImage("hex-editor-segment-16x16.png");
}
@Override

Binary file not shown.

Before

Width:  |  Height:  |  Size: 875 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 947 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 891 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 924 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 639 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 910 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 979 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 894 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 695 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 974 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 889 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 888 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 888 B

Some files were not shown because too many files have changed in this diff Show More