Forums

Welcome Guest Search | Active Topics | Members

Photo Editor 2.0 Is Coming Soon Options
Fedor
Posted: Tuesday, October 17, 2006 12:29:29 AM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
We are completing the work over PhotoEditor 2.0:

Here are some of its screenshots:








It has some minor user interface improvements (simplified red-eye removing and so on), however main changes are behind the scenes. We have totally redesigned PhotoEditor architecture in order to simplify its customization and enchancement. Its appereance can be easily customized using CSS now. You can quickly integrate PhotoEditor into your application as it consists of several controls. You can disable or add new effects easily using configuration file.

For example to add spray border effect you should implement the class inherited from Aurigma.PhotoEditor.SimpleEffect class and write several lines of code only:

Code:
<%@ Control Language="C#" Inherits="Aurigma.PhotoEditor.SprayBorderEffect" %>


Code:
namespace Aurigma.PhotoEditor
{
    public class SprayBorderEffect : SimpleEffect
    {
        public override void ApplyEffect(Aurigma.GraphicsMill.Bitmap bitmap, System.Collections.ArrayList options)
        {
            float borderSize = (float)(Math.Min(bitmap.Width, bitmap.Height) * 0.04);
            bitmap.Transforms.Spray((int)(Math.Floor(borderSize * 4)), borderSize * 4,
                Aurigma.GraphicsMill.Transforms.FadeType.Linear, 0, Aurigma.GraphicsMill.RgbColor.Gray);            
        }
    }
}


After it you should register new effect in configuration file:

Code:
<effect>
    <controlName>Effects/FilterBorders/SprayBorderEffect.ascx</controlName>
    <Priority>20</Priority>
    <SelectCaption>Filter</SelectCaption>
    <TabCaption>Borders</TabCaption>
    <RenderGroup>FilterBorders</RenderGroup>
</effect>


That's all. The effect will be automatically place on appropriate tab of PhotoEditor and will work as any other effect.

I will post full list of new features and improvements for end users and developers later. :)


Fedor attached the following image(s):
1.jpg
2.jpg
3.jpg
4.jpg
5.jpg
6.jpg



Best regards,
Fedor Skvortsov
Fedor
Posted: Wednesday, October 25, 2006 12:53:24 AM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
PhotoEditor 2.0 appearance is easily customizable using CSS. For example we can easily change the above design to the following one:



Fedor attached the following image(s):
1a.png
2a.png



Best regards,
Fedor Skvortsov
Fedor
Posted: Wednesday, October 25, 2006 3:03:41 AM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
Here is another possible design:


Fedor attached the following image(s):
3a.png



Best regards,
Fedor Skvortsov
Fedor
Posted: Thursday, November 02, 2006 12:57:31 AM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
The are several new controls in PhotoEditor 2.0. For example you can display crop area print quality using QualityMeter control.




Fedor attached the following image(s):
PhotoEditorQualityMeter1.png
PhotoEditorQualityMeter2.png



Best regards,
Fedor Skvortsov
leonlao
Posted: Saturday, November 25, 2006 10:23:52 PM
Rank: Member
Groups: Member

Joined: 11/20/2004
Posts: 2
Points: 0
Hi Fedor,

I have been using Image Uploader for a long while. I am also interested in buying Photo Editor. I have a question for you before I place my order. Our site is using Tomcat 5.5 as a web server and java/jsp for appls. Does Photo Editor support Tomcat/java/jsp?

Thanks,
Leon
Fedor
Posted: Tuesday, November 28, 2006 6:38:01 PM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
Hello Leon,

Currently PhotoEditor is ASP.NET based one. We don't plan to release its JSP version in the nearest future.

Best regards,
Fedor Skvortsov
Fedor
Posted: Wednesday, November 29, 2006 2:59:49 AM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
PhotoEditor 2.0 is 100% feature completed and tested. We plan to release it finally within this year.

Here is overview of some new features.

We have added image navigation control as well as some new color effects:


Now as extension example we have implemented calendar borders:




It is easy to add artistic borders. For example with the following declaration in configuration file:

Code:
  <effect>
    <controlName>Effects/ImageBorders/WinterBorderEffect.ascx</controlName>
    <Priority>20</Priority>
    <params>
      <param name="AlbumOrientationImage" value="App_Data/ImageBorders/winter.png"></param>
      <param name="PortraitOrientationImage" value="App_Data/ImageBorders/winter_rotated.png"></param>
      <param name="ButtonImageFileName" value="Images/Effects/ImageBorders/WinterBorderEffect.png" />
    </params>
    <SelectCaption>ImageBorders</SelectCaption>
    <TabCaption>Borders</TabCaption>
    <RenderGroup>ImageBorders</RenderGroup>
  </effect>


You can get this effect:


As more complex extension we have implemented time stamp effect. It automatically extracts data from EXIF fields and puts on image:


Fedor attached the following image(s):
PhotoEditor_a.jpg
PhotoEditor_b.jpg
PhotoEditor_c.jpg
PhotoEditor_d.jpg
PhotoEditor_e.jpg



Best regards,
Fedor Skvortsov
Fedor
Posted: Tuesday, February 27, 2007 4:28:59 AM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
Here is the final base PhotoEditor design:



Sure the design can be easily changed using CSS. The final release will be within next 2 weeks.


Fedor attached the following image(s):
PhotoEditorFinal.jpg



Best regards,
Fedor Skvortsov
Joe
Posted: Monday, March 12, 2007 2:08:50 PM
Rank: Member
Groups: Member

Joined: 3/12/2007
Posts: 1
Points: 0
When will version 2 be released?
Fedor
Posted: Friday, March 16, 2007 8:48:34 PM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
The release will be within March.

Best regards,
Fedor Skvortsov
natebell
Posted: Wednesday, March 28, 2007 8:22:35 AM
Rank: Member
Groups: Member

Joined: 3/28/2007
Posts: 56
Points: 0
I want to put in some custom buttons will I be able to do that?
Dmitry
Posted: Friday, March 30, 2007 1:27:14 AM
Rank: Advanced Member
Groups: Administration , Member

Joined: 8/3/2003
Posts: 498
Points: 324
Hello,

Sure, Photo Editor 2.0 will support custom buttons.

Sincerely yours,
Dmitry Sevostjanov.
natebell
Posted: Monday, April 02, 2007 8:29:23 AM
Rank: Member
Groups: Member

Joined: 3/28/2007
Posts: 56
Points: 0
when will 2.0 be released? and documentation?
Fedor
Posted: Tuesday, April 17, 2007 8:46:48 AM

Rank: Advanced Member
Groups: Administration , Member

Joined: 7/28/2003
Posts: 1,233
Points: -214
Location: WA, US
PhotoEditor 2.0 will be available finally on next week. Actually it is already complete, and if you need it, just let us know at sales@aurigma.com.

Best regards,
Fedor Skvortsov
ktratt
Posted: Tuesday, May 15, 2007 12:47:14 PM
Rank: Member
Groups: Member

Joined: 2/5/2007
Posts: 11
Points: 0
i need the 2.0 version badly, i can not get the 1.1 version to work and i have been waiting months for this release. You said 2 weeks ago that it was done and would be rolled out in a week. I contacted support and they have no knowledge of it. What is the correct information?
Dmitry
Posted: Wednesday, May 16, 2007 4:10:03 AM
Rank: Advanced Member
Groups: Administration , Member

Joined: 8/3/2003
Posts: 498
Points: 324
Hello,

Photo Editor 2.0 is released: http://www.aurigma.com/Products/PhotoEditor/default.aspx.

Sincerely yours,
Dmitry Sevostjanov.
Users browsing this topic
Guest


Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Main Forum RSS : RSS

YAFVision Theme Created by Jaben Cargman (Tiny Gecko)
Yet Another Forum.net version 1.9.1.6 running under Cuyahoga.
Copyright © 2003-2006 Yet Another Forum.net. All rights reserved.