View this page "phraymd Development Update #3"

1 view
Skip to first unread message

spillz

unread,
Jan 1, 2010, 10:53:28 AM1/1/10
to phraymd

Click on http://groups.google.com/group/phraymd/web/phraymd-development-update-3
- or copy & paste it into your browser's address bar if that doesn't
work.

antistress

unread,
Jan 6, 2010, 5:37:28 AM1/6/10
to phraymd
happy new year and thanks for the update :-)
i've been quite busy too last weeks and i have not used phraymd a lot

1°) about the Web Upload Plugin, is "Strip metadata" effect to what i
get with jpegoptim command :
jpegoptim -p --strip-all *.jpg
(the --strip-all argument to jpegoptim removes any EXIF/comments tags
that may be present)
If so, that's nice because i want to preserve my privacy (name of my
camera, GPS location etc) when sharing photos
BTW what about photo orientation ? is there any metadata about it ?
Will they be preserved or suppressed ?

and yes, it is cluttered ;-)

Todo List : maybe the possibilty to upload using FTP if user has its
own online space ? i don't know exactly if/how it's possible (i'm
looking for myself how to de-googlize (from Blogger, Picasa etc),
trying to switch to an online space that i would manage myself

2°) about Crop, Rotate and Image Writing Plugins

maybe all these tools should be gathered into one since it looks
intuitive to do all the edition at the same time and then save the
result ?
it's not obvious for the user to edit and then load another plugin to
save i think

thanks !

Damien Moore

unread,
Jan 6, 2010, 12:57:26 PM1/6/10
to phr...@googlegroups.com
>happy new year and thanks for the update :-)

Same to you. The updates serve as useful documentation. One day I'll use them to update the user docs.

1°) about the Web Upload Plugin, is "Strip metadata" effect to what i
get with jpegoptim command :
jpegoptim -p --strip-all *.jpg
(the --strip-all argument to jpegoptim removes any EXIF/comments tags
that may be present)

same idea, but done by writing a copy of the image without metadata (unfortunately this will be lossy as PIL doesn't support lossless operations). I'll look into jpegoptim.

 
BTW what about photo orientation ? is there any metadata about it ?
Will they be preserved or suppressed ?


the copy of the image is correctly oriented (I think -- if not it's a bug)
 
 
Todo List : maybe the possibilty to upload using FTP if user has its
own online space ? i don't know exactly if/how it's possible

yes it's feasible. People also use "gallery" for self-hosting (http://gallery.menalto.com/). would be good to be able to upload to those sites.
 
2°) about Crop, Rotate and Image Writing Plugins

maybe all these tools should be gathered into one since it looks
intuitive to do all the edition at the same time and then save the
result ?
it's not obvious for the user to edit and then load another plugin to
save i think

The advantage of having them in separate plugins is users only have to keep the ones they want. For newbie users, they won't even be aware of what plugins are activated they'll just see the functionality.

antistress

unread,
Jan 7, 2010, 5:41:57 AM1/7/10
to phraymd

On 6 jan, 18:57, Damien Moore <damienlmo...@gmail.com> wrote:
> >happy new year and thanks for the update :-)
>
> Same to you. The updates serve as useful documentation. One day I'll use
> them to update the user docs.
>
>
>
> > 1°) about the Web Upload Plugin, is "Strip metadata" effect to what i
> > get with jpegoptim command :
> > jpegoptim -p --strip-all *.jpg
> > (the --strip-all argument to jpegoptim removes any EXIF/comments tags
> > that may be present)
>
> same idea, but done by writing a copy of the image without metadata
> (unfortunately this will be lossy as PIL doesn't support lossless
> operations). I'll look into jpegoptim.
>
> > BTW what about photo orientation ? is there any metadata about it ?
> > Will they be preserved or suppressed ?
>
> the copy of the image is correctly oriented (I think -- if not it's a bug)
>
> > Todo List : maybe the possibilty to upload using FTP if user has its
> > own online space ? i don't know exactly if/how it's possible
>
> yes it's feasible. People also use "gallery" for self-hosting (http://gallery.menalto.com/). would be good to be able to upload to those
> sites.

As far as i'm concerned i'm planning to use a web hosting service and
SPGM (PHP script without the need of a database) http://spgm.sourceforge.net/?lg=us
(i'm also moving my blog to that web hosting service, using pluxml a
Content Management System using XML files without the need of a
database)


> > 2°) about Crop, Rotate and Image Writing Plugins
>
> > maybe all these tools should be gathered into one since it looks
> > intuitive to do all the edition at the same time and then save the
> > result ?
> > it's not obvious for the user to edit and then load another plugin to
> > save i think
>
> The advantage of having them in separate plugins is users only have to keep
> the ones they want. For newbie users, they won't even be aware of what
> plugins are activated they'll just see the functionality.

Waht about automatically activate the save plugin when an editing
plugin is activated ?

Damien Moore

unread,
Jan 7, 2010, 12:15:02 PM1/7/10
to phr...@googlegroups.com

As far as i'm concerned i'm planning to use a web hosting service and
SPGM (PHP script without the need of a database) http://spgm.sourceforge.net/?lg=us
(i'm also moving my blog to that web hosting service, using pluxml a
Content Management System using XML files without the need of a
database)


so you'd just want to ftp or sftp to the web? gnome already has a lot of built-in support for mounting ftp locations, right? should be easy enough to take advantage of this in phraymd with a modest amount of extra coding.
 

Waht about automatically activate the save plugin when an editing
plugin is activated ?



How about (a) showing a visual indicator when an image has been edited; and (b) have the image writer plugin prompt the user to save a modified image before switching images/quitting etc.

antistress

unread,
Jan 8, 2010, 5:14:56 AM1/8/10
to phraymd

On 7 jan, 18:15, Damien Moore <damienlmo...@gmail.com> wrote:
> > As far as i'm concerned i'm planning to use a web hosting service and
> > SPGM (PHP script without the need of a database)
> >http://spgm.sourceforge.net/?lg=us
> > (i'm also moving my blog to that web hosting service, using pluxml a
> > Content Management System using XML files without the need of a
> > database)
>
> so you'd just want to ftp or sftp to the web?

indeed

gnome already has a lot of
> built-in support for mounting ftp locations, right?

i think so, since Nautilus deals with FTP protocol


should be easy enough to
> take advantage of this in phraymd with a modest amount of extra coding.
>
>
>
> > Waht about automatically activate the save plugin when an editing
> > plugin is activated ?
>
> How about (a) showing a visual indicator when an image has been edited; and
> (b) have the image writer plugin prompt the user to save a modified image
> before switching images/quitting etc.

could be nice

antistress

unread,
Jan 18, 2010, 8:10:20 PM1/18/10
to phraymd
Reply all
Reply to author
Forward
0 new messages