Page 1 of 2

ZShop (ALPHA 0.1) - The Community Image Editor

Posted: Thu Jul 21, 2011 12:38 am
by Zulf
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.

Re: ZShop (Temp Name) - The Community Image Editor

Posted: Thu Jul 21, 2011 1:01 am
by M1z23R
Waiting for this :D

Re: ZShop (Temp Name) - The Community Image Editor

Posted: Thu Jul 21, 2011 2:46 am
by Zulf
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.

Re: ZShop (Temp Name) - The Community Image Editor

Posted: Thu Jul 21, 2011 2:48 am
by dj1437
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

Re: ZShop (ALPHA 0.1) - The Community Image Editor

Posted: Thu Jul 21, 2011 1:23 pm
by Zulf
Paying up to 20-50 credits per useful plugin.

Re: ZShop (ALPHA 0.1) - The Community Image Editor

Posted: Thu Jul 21, 2011 6:57 pm
by Cheatmasterbw
could you make a simple plugin, and add comments to show why each part is there. It might be easier than making a tutorial.

Re: ZShop (ALPHA 0.1) - The Community Image Editor

Posted: Thu Jul 21, 2011 7:27 pm
by Snyper345
he has done that already kinda-ish

Re: ZShop (ALPHA 0.1) - The Community Image Editor

Posted: Wed Jul 27, 2011 9:49 pm
by DreadNought
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)

Re: ZShop (ALPHA 0.1) - The Community Image Editor

Posted: Wed Jul 27, 2011 9:53 pm
by Cheatmasterbw
Would this work if i made a library in vb.net (same layout and all, just converted)?

Re: ZShop (ALPHA 0.1) - The Community Image Editor

Posted: Wed Jul 27, 2011 10:51 pm
by Axel
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