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.
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):
* 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.
ALPHA 0.1 RELEASED:
http://www.mediafire.com/?s0p3vx54ppq9drj
This will be free until it's at 1.5 or 2.0
Screenshots:

PLUGIN BASE (C#:BasePlugin.dll > Main.cs):
Code: Select all
Change Log: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;
}
}
}
* 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.
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.
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.
Paying up to 20-50 credits per useful plugin.
could you make a simple plugin, and add comments to show why each part is there. It might be easier than making a tutorial.
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)
I'll make a simple plugin tomorrow(rotate and possible glow o.O)
Bound and boom tech,
The Future Of Coding
The Future Of Coding
Would this work if i made a library in vb.net (same layout and all, just converted)?
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
Bitmap bitmap = Ctype(BitMap,pb.Image)
/* MODIFY THE BITMAP */
Image finalImage = Ctype(Image,bitmap)
return finalImage
Copyright Information
Copyright © Codenstuff.com 2020 - 2023