RSS/Atom feed Twitter
Site is read-only, email is disabled

Plugin question: Is it appropriate for GIMP?

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

5 of 5 messages available
Toggle history

Please log in to manage your subscriptions.

Plugin question: Is it appropriate for GIMP? Earl Wertheimer via gimp-developer-list 21 Nov 05:30
  Plugin question: Is it appropriate for GIMP? Pat David via gimp-developer-list 21 Nov 19:58
   Plugin question: Is it appropriate for GIMP? Earl Wertheimer via gimp-developer-list 21 Nov 21:11
  Plugin question: Is it appropriate for GIMP? Liam R E Quin 21 Nov 21:38
  Plugin question: Is it appropriate for GIMP? Liam R E Quin 21 Nov 21:43
Earl Wertheimer via gimp-developer-list
2018-11-21 05:30:24 UTC (over 5 years ago)

Plugin question: Is it appropriate for GIMP?

I want to create an editor that will allow users to ultimately create web forms.

I want to load an image of an existing paper form (.png / jpg / pdf ) and then draw objects over the image. The objects would be Checkboxes, text fields, etc... The kinds of things that you would see on a Adobe Acrobat PDF with fillable fields. The attributes would be position (x,y), text size, font, etc... The position of the field/objects is critical, as they have to fit over the existing paper form.

By creating objects in GIMP, they could be moved around to match the underlying image and take advantage of the existing tools - snap to grid, etc..

Finally, when all the objects are created, the user would generate the corresponding html file, including the input fields. Eg.

Why GIMP? The system I am writing this for is an Open Source EMR (Electronic Medical Records) system and I don't want to reinvent the wheel. We have hundreds of these forms and need to constantly update them.

All the other 'web form creation' tools like Orbeon are not completely Open Source..

If you want to see the types of forms we need to generate, see the following site:
https://worldoscar.org/?page_id=52

The probable first step would be to write something that would parse existing html forms (we have lots) and create the objects in GIMP...

Does this seem doable? If not, can you recommend another solution?

Thanks in advance...

Pat David via gimp-developer-list
2018-11-21 19:58:08 UTC (over 5 years ago)

Plugin question: Is it appropriate for GIMP?

This is certainly a novel approach.

Personally, I would imagine that you'd realize a much greater benefit by making these forms native HTML pages. That is - re-building these forms as actual HTML content.

Maintenance should be significantly easier, use should be easier, and someone in the future will thank you for approaching things in a more robust and manageable way.

On Tue, Nov 20, 2018 at 11:30 PM Earl Wertheimer via gimp-developer-list < gimp-developer-list@gnome.org> wrote:

I want to create an editor that will allow users to ultimately create web forms.

I want to load an image of an existing paper form (.png / jpg / pdf ) and then draw objects over the image. The objects would be Checkboxes, text fields, etc... The kinds of things that you would see on a Adobe Acrobat PDF with fillable fields. The attributes would be position (x,y), text size, font, etc... The position of the field/objects is critical, as they have to fit over the existing paper form.

By creating objects in GIMP, they could be moved around to match the underlying image and take advantage of the existing tools - snap to grid, etc..

Finally, when all the objects are created, the user would generate the corresponding html file, including the input fields. Eg.

Why GIMP? The system I am writing this for is an Open Source EMR (Electronic Medical Records) system and I don't want to reinvent the wheel. We have hundreds of these forms and need to constantly update them.

All the other 'web form creation' tools like Orbeon are not completely Open Source..

If you want to see the types of forms we need to generate, see the following site:
https://worldoscar.org/?page_id=52

The probable first step would be to write something that would parse existing html forms (we have lots) and create the objects in GIMP...

Does this seem doable? If not, can you recommend another solution?

Thanks in advance... _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership:
https://mail.gnome.org/mailman/listinfo/gimp-developer-list List archives: https://mail.gnome.org/archives/gimp-developer-list

https://patdavid.net
GPG: 66D1 7CA6 8088 4874 946D  18BD 67C7 6219 89E9 57AC
Earl Wertheimer via gimp-developer-list
2018-11-21 21:11:38 UTC (over 5 years ago)

Plugin question: Is it appropriate for GIMP?

Pat,
Thanks for the reply...

I _would_ be creating complete HTML pages, including the

fields...

I mentioned the 'input' field particularly because they would correspond to the fields objects created in GIMP.

There will be a place to enter or store the 'boilerplate' that we use. eq. The CSS for the fields, various javascript routines, Save/Print/Submit buttons, etc that we use...

The plugin should work both ways: It should be able to parse an existing html web-form and display it in GIMP.

Almost all the forms we create use positioning ( eg. position:absolute; left:428px; top:28px; width:280px; ) because we have to exactly match the existing paper forms...

On Wed, Nov 21, 2018 at 2:58 PM Pat David wrote:

This is certainly a novel approach.

Personally, I would imagine that you'd realize a much greater benefit by making these forms native HTML pages. That is - re-building these forms as actual HTML content.

Maintenance should be significantly easier, use should be easier, and someone in the future will thank you for approaching things in a more robust and manageable way.

On Tue, Nov 20, 2018 at 11:30 PM Earl Wertheimer via gimp-developer-list wrote:

I want to create an editor that will allow users to ultimately create web forms.

I want to load an image of an existing paper form (.png / jpg / pdf ) and then draw objects over the image. The objects would be Checkboxes, text fields, etc... The kinds of things that you would see on a Adobe Acrobat PDF with fillable fields. The attributes would be position (x,y), text size, font, etc... The position of the field/objects is critical, as they have to fit over the existing paper form.

By creating objects in GIMP, they could be moved around to match the underlying image and take advantage of the existing tools - snap to grid, etc..

Finally, when all the objects are created, the user would generate the corresponding html file, including the input fields. Eg.

Why GIMP? The system I am writing this for is an Open Source EMR (Electronic Medical Records) system and I don't want to reinvent the wheel. We have hundreds of these forms and need to constantly update them.

All the other 'web form creation' tools like Orbeon are not completely Open Source..

If you want to see the types of forms we need to generate, see the following site:
https://worldoscar.org/?page_id=52

The probable first step would be to write something that would parse existing html forms (we have lots) and create the objects in GIMP...

Does this seem doable? If not, can you recommend another solution?

Thanks in advance... _______________________________________________ gimp-developer-list mailing list
List address: gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list List archives: https://mail.gnome.org/archives/gimp-developer-list

--
https://patdavid.net
GPG: 66D1 7CA6 8088 4874 946D 18BD 67C7 6219 89E9 57AC

"This will be the manner of the king that shall reign over you:...
And he will take your menservants, and your maidservants, and your
goodliest young men, and your asses, and put them to his work. He will
take the tenth of your sheep: and ye shall be his servants. And ye
shall cry out in that day because of your king which ye shall have
chosen you; and the LORD will not hear you in that day." 1 Samuel 8.11
Liam R E Quin
2018-11-21 21:38:17 UTC (over 5 years ago)

Plugin question: Is it appropriate for GIMP?

On Wed, 2018-11-21 at 00:30 -0500, Earl Wertheimer via gimp-developer- list wrote:

I want to create an editor that will allow users to ultimately create web forms.

i'd probably do this in HTML with JavaScript and CSS - e.g. using CSS grid and/or flexbox for layout. There's quite a lot out there already that are GPL and/or OSS.

https://worldoscar.org/?page_id=52 points to some.

slave ankh

Liam Quin - web slave for https://www.fromoldbooks.org/
with fabulous vintage art and fascinating texts to read.
Click here to have the slave beaten.
Liam R E Quin
2018-11-21 21:43:27 UTC (over 5 years ago)

Plugin question: Is it appropriate for GIMP?

On Wed, 2018-11-21 at 00:30 -0500, Earl Wertheimer via gimp-developer- list wrote:

I want to create an editor that will allow users to ultimately create web forms.

i forgot to mention - i've also generated Web forms from XML templates using a simple XSLT stylesheet in the past. Soemtimes you can then generate the XML e.g. from a datbase schema or whatever.

slave

Liam Quin - web slave for https://www.fromoldbooks.org/
with fabulous vintage art and fascinating texts to read.
Click here to have the slave beaten.