From 85f99b8d52ffbe83299ab8eb97b2d14c829c8653 Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Fri, 16 Mar 2018 20:34:44 +0000 Subject: [PATCH] IconEdit 0.32: use native image save via libimg by Nicolas git-svn-id: svn://kolibrios.org@7190 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/cmm/iconedit/bmp32x32header | Bin 54 -> 0 bytes programs/cmm/iconedit/colors_mas.h | 3 +- programs/cmm/iconedit/iconedit.c | 88 +++++++++++++++++++-------- programs/cmm/lib/obj/libimg.h | 60 ++++++++++++++++++ 4 files changed, 124 insertions(+), 27 deletions(-) delete mode 100644 programs/cmm/iconedit/bmp32x32header diff --git a/programs/cmm/iconedit/bmp32x32header b/programs/cmm/iconedit/bmp32x32header deleted file mode 100644 index b9807d08d654c91dba9b51a9be0cda67d0c2d1dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 54 lcmZ?rHRE9b12Z700mKSG{NVrp|BMV0Ko$@{`f_1yTS2 diff --git a/programs/cmm/iconedit/colors_mas.h b/programs/cmm/iconedit/colors_mas.h index 6be12a1f61..3bcf0ce10d 100644 --- a/programs/cmm/iconedit/colors_mas.h +++ b/programs/cmm/iconedit/colors_mas.h @@ -34,7 +34,8 @@ void _image::set_image(dword _inbuf) dword i; for (i = 0; i < columns*rows; i++;) { - mas[i] = ESDWORD[i*4+_inbuf] & 0x00FFFFFF; + // mas[i] = ESDWORD[i*4+_inbuf] & 0x00FFFFFF; //for x32 bit color + mas[i] = ESDWORD[i*3+_inbuf] & 0xFFFFFF; } } diff --git a/programs/cmm/iconedit/iconedit.c b/programs/cmm/iconedit/iconedit.c index 5269bb884d..98f35f74da 100644 --- a/programs/cmm/iconedit/iconedit.c +++ b/programs/cmm/iconedit/iconedit.c @@ -28,7 +28,7 @@ enhance icon // // //===================================================// -#define T_TITLE "Icon Editor 0.31" +#define T_TITLE "Icon Editor 0.32" #define TOOLBAR_H 24+8 #define PANEL_LEFT_W 16+5+5+3+3 @@ -71,19 +71,23 @@ proc_info Form; more_less_box zoom = { PANEL_LEFT_W, -100, 11, 1, 40, BTN_ZOOM_IN, BTN_ZOOM_OUT, "Zoom" }; dword default_palette[] = { -0x330000,0x331900,0x333300,0x193300,0x003300,0x003319,0x003333,0x001933,0x000033,0x190033,0x330033,0x330019,0x000000, -0x660000,0x663300,0x666600,0x336600,0x006600,0x006633,0x006666,0x003366,0x000066,0x330066,0x660066,0x660033,0x202020, -0x990000,0x994C00,0x999900,0x4C9900,0x009900,0x00994C,0x009999,0x004C99,0x000099,0x4C0099,0x990099,0x99004C,0x404040, -0xCC0000,0xCC6600,0xCCCC00,0x66CC00,0x00CC00,0x00CC66,0x00CCCC,0x0066CC,0x0000CC,0x6600CC,0xCC00CC,0xCC0066,0x606060, -0xFF0000,0xFF8000,0xFFFF00,0x80FF00,0x00FF00,0x00FF80,0x00FFFF,0x0080FF,0x0000FF,0x7F00FF,0xFF00FF,0xFF007F,0x808080, -0xFF3333,0xFF9933,0xFFFF33,0x99FF33,0x33FF33,0x33FF99,0x33FFFF,0x3399FF,0x3333FF,0x9933FF,0xFF33FF,0xFF3399,0xA0A0A0, -0xFF6666,0xFFB266,0xFFFF66,0xB2FF66,0x66FF66,0x66FFB2,0x66FFFF,0x66B2FF,0x6666FF,0xB266FF,0xFF66FF,0xFF66B2,0xC0C0C0, -0xFF9999,0xFFCC99,0xFFFF99,0xCCFF99,0x99FF99,0x99FFCC,0x99FFFF,0x99CCFF,0x9999FF,0xCC99FF,0xFF99FF,0xFF99CC,0xE0E0E0, -0xFFCCCC,0xFFE5CC,0xFFFFCC,0xE5FFCC,0xCCFFCC,0xCCFFE5,0xCCFFFF,0xCCE5FF,0xCCCCFF,0xE5CCFF,0xFFCCFF,0xFFCCE5,0xFFFFFF +0x330000,0x331900,0x333300,0x193300,0x003300,0x003319,0x003333,0x001933,0x000033,0x190033, +0x330033,0x330019,0x000000,0x660000,0x663300,0x666600,0x336600,0x006600,0x006633,0x006666, +0x003366,0x000066,0x330066,0x660066,0x660033,0x202020,0x990000,0x994C00,0x999900,0x4C9900, +0x009900,0x00994C,0x009999,0x004C99,0x000099,0x4C0099,0x990099,0x99004C,0x404040,0xCC0000, +0xCC6600,0xCCCC00,0x66CC00,0x00CC00,0x00CC66,0x00CCCC,0x0066CC,0x0000CC,0x6600CC,0xCC00CC, +0xCC0066,0x606060,0xFF0000,0xFF8000,0xFFFF00,0x80FF00,0x00FF00,0x00FF80,0x00FFFF,0x0080FF, +0x0000FF,0x7F00FF,0xFF00FF,0xFF007F,0x808080,0xFF3333,0xFF9933,0xFFFF33,0x99FF33,0x33FF33, +0x33FF99,0x33FFFF,0x3399FF,0x3333FF,0x9933FF,0xFF33FF,0xFF3399,0xA0A0A0,0xFF6666,0xFFB266, +0xFFFF66,0xB2FF66,0x66FF66,0x66FFB2,0x66FFFF,0x66B2FF,0x6666FF,0xB266FF,0xFF66FF,0xFF66B2, +0xC0C0C0,0xFF9999,0xFFCC99,0xFFFF99,0xCCFF99,0x99FF99,0x99FFCC,0x99FFFF,0x99CCFF,0x9999FF, +0xCC99FF,0xFF99FF,0xFF99CC,0xE0E0E0,0xFFCCCC,0xFFE5CC,0xFFFFCC,0xE5FFCC,0xCCFFCC,0xCCFFE5, +0xCCFFFF,0xCCE5FF,0xCCCCFF,0xE5CCFF,0xFFCCFF,0xFFCCE5,0xFFFFFF }; dword last_used_colors[13*2] = { -0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF, -0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF +0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF, +0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF, +0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF }; _image image; @@ -209,7 +213,12 @@ void LineTool_onMouseEvent(int mouseX, int mouseY, int lkm, int pkm) { } else { // Draw line from start position to current position - DrawLine(LineTool_startX - canvas.x/zoom.value, LineTool_startY - canvas.y/zoom.value, mouseX - canvas.x/zoom.value, mouseY - canvas.y/zoom.value, active_color_1, 1); + DrawLine(LineTool_startX - canvas.x/zoom.value, + LineTool_startY - canvas.y/zoom.value, + mouseX - canvas.x/zoom.value, + mouseY - canvas.y/zoom.value, + active_color_1, + 1); DrawCanvas(); // Reset start position @@ -230,7 +239,12 @@ void LineTool_onMouseEvent(int mouseX, int mouseY, int lkm, int pkm) { void LineTool_onCanvasDraw() { if ((LineTool_startX >= 0) && (LineTool_startY >= 0)) { - DrawLine(LineTool_startX - canvas.x/zoom.value, LineTool_startY - canvas.y/zoom.value, mouse.x - canvas.x/zoom.value, mouse.y - canvas.y/zoom.value, active_color_1, 2); + DrawLine(LineTool_startX - canvas.x/zoom.value, + LineTool_startY - canvas.y/zoom.value, + mouse.x - canvas.x/zoom.value, + mouse.y - canvas.y/zoom.value, + active_color_1, + 2); LineTool_lastTempPosX = mouse.x - canvas.x/zoom.value; LineTool_lastTempPosY = mouse.y - canvas.y/zoom.value; } @@ -339,7 +353,7 @@ void main() image.set_image(open_image.imgsrc); } else { - notify("'Error: image format is unacceptable.\nOnly images created in IconEditor (BMP, 32x32x16b) can be opened!' -E"); + notify("'Error: image format is unacceptable (PNG, 32x32x16b expected)' -E"); } } @@ -373,7 +387,7 @@ void main() DrawCanvas(); break; case BTN_OPEN: - RunProgram("/sys/lod", sprintf(#param, "*bmp* %s",#program_path)); + RunProgram("/sys/lod", sprintf(#param, "*png* %s",#program_path)); break; case BTN_SAVE: EventSave(); @@ -570,8 +584,12 @@ void DrawEditArea() } if (top_side>0) { - DrawBar(wrapper.x, wrapper.y+top_side, left_side, wrapper.h-top_side-top_side, color1); //left - DrawBar(wrapper.x+wrapper.w-left_side-1, wrapper.y+top_side, left_side, wrapper.h-top_side-top_side, color1); //right + //left + DrawBar(wrapper.x, wrapper.y+top_side, left_side, + wrapper.h-top_side-top_side, color1); + //right + DrawBar(wrapper.x+wrapper.w-left_side-1, wrapper.y+top_side, left_side, + wrapper.h-top_side-top_side, color1); } } @@ -645,18 +663,36 @@ void DrawCanvas() // // //===================================================// -dword bmp_32x32x16_header[] = FROM "bmp32x32header"; void EventSave() { - char save_buf[3126]; - memmov(#save_buf, #bmp_32x32x16_header, sizeof(bmp_32x32x16_header)); - memmov(#save_buf+sizeof(bmp_32x32x16_header), image.get_image(), sizeof(save_buf)-sizeof(bmp_32x32x16_header)); - if (WriteFile(sizeof(save_buf), #save_buf, "/rd/1/saved_image.bmp")==0) - { - notify("'File saved as /rd/1/saved_image.bmp' -O"); + dword encoded_data=0; + dword encoded_size=0; + dword image_ptr = 0; + + image_ptr = create_image(Image_bpp24, 32, 32); + + if (image_ptr == 0) { + notify("'Error saving file, probably not enought memory!' -E"); } else { - notify("'Error saving BPM file, probably not enought space on ramdisk!' -E"); + EDI = image_ptr; + memmov(EDI._Image.Data, image.get_image(), image.rows * image.columns * 3); + + encoded_data = encode_image(image_ptr, LIBIMG_FORMAT_PNG, 0, #encoded_size); + + img_destroy stdcall(image_ptr); + + if(encoded_data == 0) { + notify("'Error saving file, incorrect data!' -E"); + } + else { + if (WriteFile(encoded_size, encoded_data, "/rd/1/saved_image.png") == 0) { + notify("'File saved as /rd/1/saved_image.png' -O"); + } + else { + notify("'Error saving file, probably not enought space on ramdisk!' -E"); + } + } } } diff --git a/programs/cmm/lib/obj/libimg.h b/programs/cmm/lib/obj/libimg.h index 11343f4fd3..b8458a5213 100644 --- a/programs/cmm/lib/obj/libimg.h +++ b/programs/cmm/lib/obj/libimg.h @@ -30,6 +30,9 @@ dword img_to_rgb2 = #aimg_to_rgb2; dword img_decode = #aimg_decode; dword img_destroy = #aimg_destroy; dword img_draw = #aimg_draw; +dword img_create = #aimg_create; +dword img_encode = #aimg_encode; + //dword img_flip = #aimg_flip; //dword img_rotate = #aimg_rotate; $DD 2 dup 0 @@ -41,9 +44,53 @@ char aimg_to_rgb2[12] = "img_to_rgb2\0"; char aimg_decode[11] = "img_decode\0"; char aimg_destroy[12] = "img_destroy\0"; char aimg_draw[9] = "img_draw\0"; +char aimg_create[11] = "img_create\0"; +char aimg_encode[11] = "img_encode\0"; //char aimg_flip[9] = "img_flip\0"; //char aimg_rotate[11] = "img_rotate\0 "; +#define LIBIMG_FORMAT_BMP 1 +#define LIBIMG_FORMAT_ICO 2 +#define LIBIMG_FORMAT_CUR 3 +#define LIBIMG_FORMAT_GIF 4 +#define LIBIMG_FORMAT_PNG 5 +#define LIBIMG_FORMAT_JPEG 6 +#define LIBIMG_FORMAT_TGA 7 +#define LIBIMG_FORMAT_PCX 8 +#define LIBIMG_FORMAT_XCF 9 +#define LIBIMG_FORMAT_TIFF 10 +#define LIBIMG_FORMAT_PNM 11 +#define LIBIMG_FORMAT_WBMP 12 +#define LIBIMG_FORMAT_XBM 13 +#define LIBIMG_FORMAT_Z80 14 + +struct _Image +{ + dword Checksum; // ((Width ROL 16) OR Height) XOR Data[0] ; ignored so far + dword Width; + dword Height; + dword Next; + dword Previous; + dword Type; // one of Image.bppN + dword Data; + dword Palette; // used iff Type eq Image.bpp1, Image.bpp2, Image.bpp4 or Image.bpp8i + dword Extended; + dword Flags; // bitfield + dword Delay; // used iff Image.IsAnimated is set in Flags +}; + +// values for Image.Type +// must be consecutive to allow fast switch on Image.Type in support functions +#define Image_bpp8i 1 // indexed +#define Image_bpp24 2 +#define Image_bpp32 3 +#define Image_bpp15 4 +#define Image_bpp16 5 +#define Image_bpp1 6 +#define Image_bpp8g 7 // grayscale +#define Image_bpp2i 8 +#define Image_bpp4i 9 +#define Image_bpp8a 10 // grayscale with alpha channel; application layer only!!! kernel doesn't handle this image type, libimg can only create and destroy such images dword load_image(dword filename) @@ -133,4 +180,17 @@ void DrawLibImage(dword image_pointer,x,y,w,h,offx,offy) { ); } +dword create_image(dword type, dword width, dword height) { + img_create stdcall(width, height, type); + return EAX; +} + +// size - output parameter, error code / the size of encoded data +dword encode_image(dword image_ptr, dword options, dword specific_options, dword* size) { + img_encode stdcall(image_ptr, options, specific_options); + ESDWORD[size] = ECX; + + return EAX; +} + #endif \ No newline at end of file