You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following is a part of the picture display based on the winfrom development software interface:
The code is modified to ( only && to || ) if (!gdip_near_zero(srcwidth - dstwidth) || !gdip_near_zero(srcheight - dstheight))
the result is normal Q1: I am not sure if I change && to || will it affect other places?
The above two pieces of code are not used. Causes the interface texture to appear gradient.
Comparison effect before and after code modification:
before fixing
After modification
The code is modified as follows
Q2: After the modification, the gradient disappeared, but you can clearly see that the chamfer in the upper left corner of the comparison chart above has become a right angle. Don't know what to do Eliminate the gradation, keep the chamfer?
Sorry!Since the company's intranet cannot upload github code, the problem can only be described in this way
The text was updated successfully, but these errors were encountered:
OS: Ubuntu18.04 Desktop.
In the main branch,
GdipDrawImageRectRect Function
Question code 1: L830
if (!gdip_near_zero(srcwidth - dstwidth) && !gdip_near_zero(srcheight - dstheight))
The following is a part of the picture display based on the winfrom development software interface:
The code is modified to ( only && to || )
if (!gdip_near_zero(srcwidth - dstwidth) || !gdip_near_zero(srcheight - dstheight))
the result is normal
Q1: I am not sure if I change && to || will it affect other places?
Question code 2: l825
filter = cairo_pattern_create_for_surface (preprocessed_image->surface);
cairo_pattern_set_filter (filter, gdip_get_cairo_filter (graphics->interpolation));
The above two pieces of code are not used. Causes the interface texture to appear gradient.
Comparison effect before and after code modification:
before fixing
After modification
The code is modified as follows
Q2: After the modification, the gradient disappeared, but you can clearly see that the chamfer in the upper left corner of the comparison chart above has become a right angle. Don't know what to do Eliminate the gradation, keep the chamfer?
Sorry!Since the company's intranet cannot upload github code, the problem can only be described in this way
The text was updated successfully, but these errors were encountered: