ZShop (ALPHA 0.1) - The Community Image Editor
Posted: Thu Jul 21, 2011 12:38 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):
* 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.