Redo « Icon Image « Java Swing Q&A





1. Image Undo Redo    coderanch.com

Hi friends , I'm developing java image editor. for that i want to give following funcanalities please tell me wheather it possiable or not. 1) Editor supoorts all Image file extenstions like . BMP, GIF, PCX, PIC, JPE, PXR, PNG, RAW, TGA. 2) Set image resolution to 72 DPI (dot per inches ) . This funcanality for saving image with 72 ...

2. suggestion regarding the maintainability of undo-redo states in image editing    coderanch.com

Hi, I am developing an image editing app in java, which of-course will need undo-redo functionality. What have i done.... Have created a State class which will contain a bufferedimage, ref to prev state, ref to next state. Then formed a linked list of states, traversing back and forth with clicks of undo and redo buttons. So what do i want.... ...