[jira] [Commented] (OFBIZ-12751) Imagepreview - Content Management

2023-02-04 Thread Ingo Wolfmayr (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12751?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684193#comment-17684193
 ] 

Ingo Wolfmayr commented on OFBIZ-12751:
---

Great, thanks!!!

> Imagepreview - Content Management
> -
>
> Key: OFBIZ-12751
> URL: https://issues.apache.org/jira/browse/OFBIZ-12751
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product/catalog, themes/helveticus
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: 22.01.01
>
> Attachments: imagemanagement.patch, preview.jpg
>
>
> It would be nice, if the image preview in  "image management" would be 
> displayed in thumbnail size.
> /catalog/control/ListImageManage?productId
> The full size image can be displayed via the "view" button.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread Ingo Wolfmayr (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684192#comment-17684192
 ] 

Ingo Wolfmayr commented on OFBIZ-12750:
---

Thanks Jacques!!!

> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Bug
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 22.01.01
>
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OFBIZ-12424) Link Party feature stop the EECA rules globally

2023-02-04 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684166#comment-17684166
 ] 

ASF subversion and git services commented on OFBIZ-12424:
-

Commit 21f71e8a9c10311c1d61fa9c6eee300b4ac69ee1 in ofbiz-framework's branch 
refs/heads/release22.01 from Jacques Le Roux
[ https://gitbox.apache.org/repos/asf?p=ofbiz-framework.git;h=21f71e8a9c ]

Fixed: Link Party feature stop the EECA rules globally (OFBIZ-12424)

In the Link Party Feature(partymgr > profile > Link Party) there is a code that
stops EECA rules globally in the system and as a result it caused major issues
in the process which are driven from EECA's.

PartyServices.java
public static Map linkParty(DispatchContext dctx, Map Link Party feature stop the EECA rules globally
> ---
>
> Key: OFBIZ-12424
> URL: https://issues.apache.org/jira/browse/OFBIZ-12424
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: Release Branch 18.12, Release Branch 17.12, Trunk, 
> Upcoming Branch
>Reporter: Rohit Koushal
>Assignee: Rohit Koushal
>Priority: Major
> Attachments: OFBIZ-12424.patch, OFBIZ-12424_v1.patch, 
> image-2021-12-01-17-18-37-279.png, image-2021-12-01-17-20-21-196.png, 
> image-2021-12-01-18-18-40-267.png
>
>
> In the Link Party Feature({_}*partymgr > profile > Link Party*{_}) there is a 
> code that stops EECA rules globally in the system and as a result it caused 
> major issues in the process which are driven from EECA's.
> *PartyServices.java*
> {code:java}
> public static Map linkParty(DispatchContext dctx, Map ? extends Object> context) {
> Delegator delegator = dctx.getDelegator();
> Locale locale = (Locale) context.get("locale");
> delegator.setEntityEcaHandler(null);
> .
> .
> .
> } {code}
>  
> In the above code you can see that we are updating EntityEcaHandler on 
> delegator object to null.  
> *GenericDelegator.java*
> {code:java}
> protected void evalRules(String event, String currentOperation, GenericEntity 
> value, boolean isError) throws GenericEntityException {
> if (entityEcaHandler == null) {
> return;
> }
> entityEcaHandler.evalRules(currentOperation, eventMap, event, value, 
> isError);
> } {code}
> On any DB operation(find, create and store) using delegator above method run 
> and due to null EntityEcaHandler object it won't execute any EECA's globally 
> in the system



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OFBIZ-12424) Link Party feature stop the EECA rules globally

2023-02-04 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684167#comment-17684167
 ] 

ASF subversion and git services commented on OFBIZ-12424:
-

Commit e7ea8ecdbb97fef749a491735fd2526d3e7ec312 in ofbiz-framework's branch 
refs/heads/trunk from Jacques Le Roux
[ https://gitbox.apache.org/repos/asf?p=ofbiz-framework.git;h=e7ea8ecdbb ]

Fixed: Link Party feature stop the EECA rules globally (OFBIZ-12424)

In the Link Party Feature(partymgr > profile > Link Party) there is a code that
stops EECA rules globally in the system and as a result it caused major issues
in the process which are driven from EECA's.

PartyServices.java
public static Map linkParty(DispatchContext dctx, Map Link Party feature stop the EECA rules globally
> ---
>
> Key: OFBIZ-12424
> URL: https://issues.apache.org/jira/browse/OFBIZ-12424
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: Release Branch 18.12, Release Branch 17.12, Trunk, 
> Upcoming Branch
>Reporter: Rohit Koushal
>Assignee: Rohit Koushal
>Priority: Major
> Attachments: OFBIZ-12424.patch, OFBIZ-12424_v1.patch, 
> image-2021-12-01-17-18-37-279.png, image-2021-12-01-17-20-21-196.png, 
> image-2021-12-01-18-18-40-267.png
>
>
> In the Link Party Feature({_}*partymgr > profile > Link Party*{_}) there is a 
> code that stops EECA rules globally in the system and as a result it caused 
> major issues in the process which are driven from EECA's.
> *PartyServices.java*
> {code:java}
> public static Map linkParty(DispatchContext dctx, Map ? extends Object> context) {
> Delegator delegator = dctx.getDelegator();
> Locale locale = (Locale) context.get("locale");
> delegator.setEntityEcaHandler(null);
> .
> .
> .
> } {code}
>  
> In the above code you can see that we are updating EntityEcaHandler on 
> delegator object to null.  
> *GenericDelegator.java*
> {code:java}
> protected void evalRules(String event, String currentOperation, GenericEntity 
> value, boolean isError) throws GenericEntityException {
> if (entityEcaHandler == null) {
> return;
> }
> entityEcaHandler.evalRules(currentOperation, eventMap, event, value, 
> isError);
> } {code}
> On any DB operation(find, create and store) using delegator above method run 
> and due to null EntityEcaHandler object it won't execute any EECA's globally 
> in the system



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Closed] (OFBIZ-12424) Link Party feature stop the EECA rules globally

2023-02-04 Thread Jacques Le Roux (Jira)


 [ 
https://issues.apache.org/jira/browse/OFBIZ-12424?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jacques Le Roux closed OFBIZ-12424.
---
Fix Version/s: 22.01.01
   Resolution: Fixed

> Link Party feature stop the EECA rules globally
> ---
>
> Key: OFBIZ-12424
> URL: https://issues.apache.org/jira/browse/OFBIZ-12424
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: Release Branch 18.12, Release Branch 17.12, Trunk, 
> Upcoming Branch
>Reporter: Rohit Koushal
>Assignee: Rohit Koushal
>Priority: Major
> Fix For: 22.01.01
>
> Attachments: OFBIZ-12424.patch, OFBIZ-12424_v1.patch, 
> image-2021-12-01-17-18-37-279.png, image-2021-12-01-17-20-21-196.png, 
> image-2021-12-01-18-18-40-267.png
>
>
> In the Link Party Feature({_}*partymgr > profile > Link Party*{_}) there is a 
> code that stops EECA rules globally in the system and as a result it caused 
> major issues in the process which are driven from EECA's.
> *PartyServices.java*
> {code:java}
> public static Map linkParty(DispatchContext dctx, Map ? extends Object> context) {
> Delegator delegator = dctx.getDelegator();
> Locale locale = (Locale) context.get("locale");
> delegator.setEntityEcaHandler(null);
> .
> .
> .
> } {code}
>  
> In the above code you can see that we are updating EntityEcaHandler on 
> delegator object to null.  
> *GenericDelegator.java*
> {code:java}
> protected void evalRules(String event, String currentOperation, GenericEntity 
> value, boolean isError) throws GenericEntityException {
> if (entityEcaHandler == null) {
> return;
> }
> entityEcaHandler.evalRules(currentOperation, eventMap, event, value, 
> isError);
> } {code}
> On any DB operation(find, create and store) using delegator above method run 
> and due to null EntityEcaHandler object it won't execute any EECA's globally 
> in the system



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684165#comment-17684165
 ] 

ASF subversion and git services commented on OFBIZ-12750:
-

Commit 34f0ad4080f9308ff09456b18bcf2ae8b772995e in ofbiz-framework's branch 
refs/heads/release22.01 from Jacques Le Roux
[ https://gitbox.apache.org/repos/asf?p=ofbiz-framework.git;h=34f0ad4080 ]

Fixed: Product Image PNG - Black Background (OFBIZ-12750)

Fixes previous commit* in relation with this change:

jleroux: in 22.01 I also made the file the same than in trunk. There were no
reasons it should no be (no functional change but for transparent background and
Windows usage). This will also make future possible backports easier

imaging:1.0-alpha3 was needed

* https://gitbox.apache.org/repos/asf?p=ofbiz-framework.git;h=c592382f57


> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Bug
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 22.01.01
>
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [ofbiz-framework] rohitkou commented on pull request #373: Fixed: Link Party feature stop the EECA rules globally(OFBIZ-12424)

2023-02-04 Thread via GitHub


rohitkou commented on PR #373:
URL: https://github.com/apache/ofbiz-framework/pull/373#issuecomment-1416747418

   Thanks you @JacquesLeRoux and @mbrohl, I've extracted the changes into a 
patch file and added it to ticket OFBIZ-12424. Closing this pull request now.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ofbiz.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[jira] [Commented] (OFBIZ-12424) Link Party feature stop the EECA rules globally

2023-02-04 Thread Rohit Koushal (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684160#comment-17684160
 ] 

Rohit Koushal commented on OFBIZ-12424:
---

Thank you, [~deepak] & [~jleroux].

Just to reiterate, the purpose of this ticket is to address a technical code 
problem that is causing the system EECA to stop functioning when the linkParty 
service runs. Delegator is a singleton object and any changes made to its state 
could potentially have serious consequences for the system, as was the case in 
the linkParty service because of code.
{code:java}
delegator.setEntityEcaHandler(null);
{code}
 

In accordance with the suggestion, I have successfully removed the code that 
deleted the PartyRoles and attaching the revised patch for your review 
[^OFBIZ-12424_v1.patch]. Also please discard my pull request and use this patch 
as the final changes, I will close that PR soon.

Thanks again!!

> Link Party feature stop the EECA rules globally
> ---
>
> Key: OFBIZ-12424
> URL: https://issues.apache.org/jira/browse/OFBIZ-12424
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: Release Branch 18.12, Release Branch 17.12, Trunk, 
> Upcoming Branch
>Reporter: Rohit Koushal
>Assignee: Rohit Koushal
>Priority: Major
> Attachments: OFBIZ-12424.patch, OFBIZ-12424_v1.patch, 
> image-2021-12-01-17-18-37-279.png, image-2021-12-01-17-20-21-196.png, 
> image-2021-12-01-18-18-40-267.png
>
>
> In the Link Party Feature({_}*partymgr > profile > Link Party*{_}) there is a 
> code that stops EECA rules globally in the system and as a result it caused 
> major issues in the process which are driven from EECA's.
> *PartyServices.java*
> {code:java}
> public static Map linkParty(DispatchContext dctx, Map ? extends Object> context) {
> Delegator delegator = dctx.getDelegator();
> Locale locale = (Locale) context.get("locale");
> delegator.setEntityEcaHandler(null);
> .
> .
> .
> } {code}
>  
> In the above code you can see that we are updating EntityEcaHandler on 
> delegator object to null.  
> *GenericDelegator.java*
> {code:java}
> protected void evalRules(String event, String currentOperation, GenericEntity 
> value, boolean isError) throws GenericEntityException {
> if (entityEcaHandler == null) {
> return;
> }
> entityEcaHandler.evalRules(currentOperation, eventMap, event, value, 
> isError);
> } {code}
> On any DB operation(find, create and store) using delegator above method run 
> and due to null EntityEcaHandler object it won't execute any EECA's globally 
> in the system



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (OFBIZ-12424) Link Party feature stop the EECA rules globally

2023-02-04 Thread Rohit Koushal (Jira)


 [ 
https://issues.apache.org/jira/browse/OFBIZ-12424?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rohit Koushal updated OFBIZ-12424:
--
Attachment: OFBIZ-12424_v1.patch

> Link Party feature stop the EECA rules globally
> ---
>
> Key: OFBIZ-12424
> URL: https://issues.apache.org/jira/browse/OFBIZ-12424
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: Release Branch 18.12, Release Branch 17.12, Trunk, 
> Upcoming Branch
>Reporter: Rohit Koushal
>Assignee: Rohit Koushal
>Priority: Major
> Attachments: OFBIZ-12424.patch, OFBIZ-12424_v1.patch, 
> image-2021-12-01-17-18-37-279.png, image-2021-12-01-17-20-21-196.png, 
> image-2021-12-01-18-18-40-267.png
>
>
> In the Link Party Feature({_}*partymgr > profile > Link Party*{_}) there is a 
> code that stops EECA rules globally in the system and as a result it caused 
> major issues in the process which are driven from EECA's.
> *PartyServices.java*
> {code:java}
> public static Map linkParty(DispatchContext dctx, Map ? extends Object> context) {
> Delegator delegator = dctx.getDelegator();
> Locale locale = (Locale) context.get("locale");
> delegator.setEntityEcaHandler(null);
> .
> .
> .
> } {code}
>  
> In the above code you can see that we are updating EntityEcaHandler on 
> delegator object to null.  
> *GenericDelegator.java*
> {code:java}
> protected void evalRules(String event, String currentOperation, GenericEntity 
> value, boolean isError) throws GenericEntityException {
> if (entityEcaHandler == null) {
> return;
> }
> entityEcaHandler.evalRules(currentOperation, eventMap, event, value, 
> isError);
> } {code}
> On any DB operation(find, create and store) using delegator above method run 
> and due to null EntityEcaHandler object it won't execute any EECA's globally 
> in the system



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Closed] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread Jacques Le Roux (Jira)


 [ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jacques Le Roux closed OFBIZ-12750.
---
Fix Version/s: 22.01.01
   Resolution: Fixed

> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Bug
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 22.01.01
>
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[GitHub] [ofbiz-framework]: Workflow run "Java CI with Gradle" is working again!

2023-02-04 Thread GitBox


The GitHub Actions job "Java CI with Gradle" on ofbiz-framework.git has 
succeeded.
Run started by GitHub user asfgit (triggered by asfgit).

Head commit for run:
cba0e4b77ad3168674227007ae42d04f3a14daee / Jacques Le Roux 

Fixed: Product Image PNG - Black Background (OFBIZ-12750)

When uploading a png image to a product via product/content, transparent
background becomes black.

Uploading the same image via content component or image management works.

Thanks: Ingo

Report URL: https://github.com/apache/ofbiz-framework/actions/runs/4091444243

With regards,
GitHub Actions via GitBox



[GitHub] [ofbiz-framework]: Workflow run "Java CI with Gradle" failed!

2023-02-04 Thread GitBox


The GitHub Actions job "Java CI with Gradle" on ofbiz-framework.git has failed.
Run started by GitHub user asfgit (triggered by asfgit).

Head commit for run:
c592382f57f50d0d671e657b24b16e1a9a61d77a / Jacques Le Roux 

Fixed: Product Image PNG - Black Background (OFBIZ-12750)

When uploading a png image to a product via product/content, transparent
background becomes black.

Uploading the same image via content component or image management works.

Thanks: Ingo
jleroux: in 22.01 I also made the file the same than in trunk. There were no
reasons it should no be (no functional change but for transparent background and
Windows usage). This will also make future possible backports easier

Report URL: https://github.com/apache/ofbiz-framework/actions/runs/4091444174

With regards,
GitHub Actions via GitBox



[jira] [Commented] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684151#comment-17684151
 ] 

ASF subversion and git services commented on OFBIZ-12750:
-

Commit c592382f57f50d0d671e657b24b16e1a9a61d77a in ofbiz-framework's branch 
refs/heads/release22.01 from Jacques Le Roux
[ https://gitbox.apache.org/repos/asf?p=ofbiz-framework.git;h=c592382f57 ]

Fixed: Product Image PNG - Black Background (OFBIZ-12750)

When uploading a png image to a product via product/content, transparent
background becomes black.

Uploading the same image via content component or image management works.

Thanks: Ingo
jleroux: in 22.01 I also made the file the same than in trunk. There were no
reasons it should no be (no functional change but for transparent background and
Windows usage). This will also make future possible backports easier


> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Bug
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684152#comment-17684152
 ] 

ASF subversion and git services commented on OFBIZ-12750:
-

Commit cba0e4b77ad3168674227007ae42d04f3a14daee in ofbiz-framework's branch 
refs/heads/trunk from Jacques Le Roux
[ https://gitbox.apache.org/repos/asf?p=ofbiz-framework.git;h=cba0e4b77a ]

Fixed: Product Image PNG - Black Background (OFBIZ-12750)

When uploading a png image to a product via product/content, transparent
background becomes black.

Uploading the same image via content component or image management works.

Thanks: Ingo


> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Bug
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684147#comment-17684147
 ] 

Jacques Le Roux commented on OFBIZ-12750:
-

Ah I remember, 

I was confused because you said that it worked with "content or via image 
management". So I thought that you spoke about product/content upload. I 
understant now that you spoke about content component.

There is still though something I need to check (unrelated to your patch). In 
all cases, I think SecuredUpload::imageMadeSafe should be called. I'll check 
after pushing your patch.

> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread Jacques Le Roux (Jira)


 [ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jacques Le Roux updated OFBIZ-12750:

Issue Type: Bug  (was: Improvement)

> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Bug
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OFBIZ-12750) Product Image PNG - Black Background

2023-02-04 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-12750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17684141#comment-17684141
 ] 

Jacques Le Roux commented on OFBIZ-12750:
-

Thank you Ingo, not sure what happened to me yesterday evening. Maybe I simply 
fogot to temporarily revert dark reader (though I remember I did). Anyway I 
commit soon...

> Product Image PNG - Black Background
> 
>
> Key: OFBIZ-12750
> URL: https://issues.apache.org/jira/browse/OFBIZ-12750
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product/catalog
>Affects Versions: Upcoming Branch
>Reporter: Ingo Wolfmayr
>Assignee: Jacques Le Roux
>Priority: Major
> Attachments: Lyke CF SE.png, png.patch
>
>
> When uploading an png image to a product (default image), transparent 
> background becomes black.
> [https://demo-trunk.ofbiz.apache.org/catalog/control/UploadProductImage?productId=WG-9943-B3_file_type=original]
> Uploading the same image as content or via image management works.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)