ZShop (ALPHA 0.1) - The Community Image Editor

Here is the place to post images, videos and downloads of your current and upcoming applications that you are working on.
18 posts Page 1 of 2
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

ZShop is a small image editor I'm making (Won't be like Adobe PhotoShop) that will be ran on plugins aside from the built in functions (Import, Export, Exit, Refresh Plugin List).

ALPHA 0.1 RELEASED:
http://www.mediafire.com/?s0p3vx54ppq9drj


This will be free until it's at 1.5 or 2.0

Screenshots:
Image

PLUGIN BASE (C#:BasePlugin.dll > Main.cs):
Code: Select all
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;

namespace BasePlugin
{
    public class Main
    {

        public Image startPlugin(PictureBox pb)
        {
            /*
             * this method IS REQUIRED for plugins to work.
             * 
             *
             */
            Bitmap bitmap = (Bitmap)pb.Image;
            /* MODIFY THE BITMAP */
            Image finalImage = (Image)bitmap;
            return finalImage;
        }

    }
}
Change Log:
* Alpha 0.1_01
------ No need to double click anymore.
------ Fixed bug with running a plugin that was not selected.
------ Image dimensions after form title.
------ PictureBox resizes to fit image.
------ Tweaked plugin system.
Last edited by Zulf on Thu Jul 21, 2011 7:59 am, edited 4 times in total.
Image
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

Waiting for this :D
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

I could just release this as version Alpha 0.1 since all it has is BASIC plugin support. Then I'll have to do a tut on plugins. fldsfkjdskfj.
Image
User avatar
dj1437
VIP - Donator
VIP - Donator
Posts: 504
Joined: Tue Dec 21, 2010 2:02 am

Zulf wrote:
I could just release this as version Alpha 0.1 since all it has is BASIC plugin support. Then I'll have to do a tut on plugins. fldsfkjdskfj.
It sounds like a good program. Can you make pre-made plugins? I would like to try this program in alpha
This is a signature.
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

Paying up to 20-50 credits per useful plugin.
Image
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

could you make a simple plugin, and add comments to show why each part is there. It might be easier than making a tutorial.
http://www.megaapps.tk/
User avatar
Snyper345
VIP - Donator
VIP - Donator
Posts: 471
Joined: Mon Nov 01, 2010 1:53 am

he has done that already kinda-ish
Image
Image
User avatar
DreadNought
VIP - Donator
VIP - Donator
Posts: 116
Joined: Fri Jan 08, 2010 12:37 pm

I happen to be very good with C#(Been coding on it for.. 18 months now?)

I'll make a simple plugin tomorrow(rotate and possible glow o.O)
Bound and boom tech,
The Future Of Coding
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Would this work if i made a library in vb.net (same layout and all, just converted)?
http://www.megaapps.tk/
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Yes, cheatmaster you would just need to add that code in vb

Bitmap bitmap = Ctype(BitMap,pb.Image)
/* MODIFY THE BITMAP */
Image finalImage = Ctype(Image,bitmap)
return finalImage
http://vagex.com/?ref=25000
18 posts Page 1 of 2
Return to “Work in Progress”