ricin Posted November 25, 2023 Posted November 25, 2023 hey, i have a question, does this work with non english alphabet characters like the cyrillic alphabet or japanese characters? Quote
Pixey Posted November 25, 2023 Posted November 25, 2023 29 minutes ago, ricin said: hey, i have a question, does this work with non english alphabet characters like the cyrillic alphabet or japanese characters? It should work with any font that you can download into your Windows Font Folder. For example you can get Japanese Fonts here. Put the fonts into your Windows Folder, re-open paint.net to try Quote How I made Jennifer & Halle in Paint.net My Gallery | My Deviant Art "Rescuing one animal may not change the world, but for that animal their world is changed forever!" anon.
ricin Posted November 25, 2023 Posted November 25, 2023 1 hour ago, Pixey said: It should work with any font that you can download into your Windows Font Folder. For example you can get Japanese Fonts here. Put the fonts into your Windows Folder, re-open paint.net to try thanks!! Quote
Silverdenn Posted April 18 Posted April 18 On 10/31/2023 at 5:19 PM, Tabatha said: Hi I just bought paint and i tried to download this plugin however nothing downloads. super confused. I clicked on the zip file under the picture I have registered my account and nothing. please help. Hey there, I got the issue. You can right click and click on 'copy link', then past it in your url bar. You'll see there is possible something like "https://https://", just remove one of them and it'll download! Quote
Tactilis Posted April 18 Posted April 18 55 minutes ago, Silverdenn said: I got the issue. You can right click and click on 'copy link', then past it in your url bar. You'll see there is possible something like "https://https://", just remove one of them and it'll download! I have just clicked on the .zip in the first post and it has downloaded correctly in each of Firefox, Chrome, and Edge. Also if I right click and copy the link, then it pastes as expected as https://forums.getpaint.net/applications/core/interface/file/attachment.php?id=21189&key=c22a0ce82c264787ef702b21595d1a8c and then downloads the zip correctly. I see nothing wrong here. What browser are you using @Silverdenn? Quote
toe_head2001 Posted April 18 Posted April 18 @Silverdenn probably came to this topic via the Plugin Index. The Plugin Index, until a few minutes ago, would cause these kind of issues on pages it linked to. 4 Quote My Gallery | My Plugin Pack Layman's Guide to CodeLab
Red ochre Posted April 18 Posted April 18 🦶 1 1 Quote Red ochre Plugin pack.............. Diabolical Drawings ................Real Paintings
BlitheSatin Posted August 17 Posted August 17 On 4/18/2022 at 1:13 AM, VeLC said: As someone who typically likes to design using a high resolution, I often find the max radius of 1,000 too limiting. I'm not familiar with C# or any coding language, but I thought if I copied the CodeLab code you provided and tried manually changing the variable to a higher number, it would just simply work. It didn't, but how do I fix this issue? If it helps, the error I get is this: Error at line 17: Cannot implicitly convert type 'PaintDotNet.Pair<double, double>' to 'PaintDotNet.Rendering.Vector2Double' (CS0029) Error at line 60: Operator '+' cannot be applied to operands of type 'method group' and 'int' (CS0019) Error at line 61: 'Vector2Double' does not contain a definition for 'Second' and no accessible extension method 'Second' accepting a first argument of type 'Vector2Double' could be found (are you missing a using directive or an assembly reference?) (CS1061) Quote
ReMake Posted August 17 Posted August 17 Replace lines 60 and 61 of the script: double translateX = rect.Left + (center.X + 1) / 2 * rect.Width; double translateY = rect.Top + (center.Y + 1) / 2 * rect.Height; 1 1 Quote
Red ochre Posted August 17 Posted August 17 Hi @ReMake - Did you manage to build this with code lab?... I couldn't! After editing there were no errors shown in codelab v6.11, Pdn 5.0.13, Classic effect BUT 26 errors when trying to build?...all in the codelab hidden code, (-ve line numbers). I guess classic effects will be impossible to edit and compile soon anyway... which seems a shame to me but I can be a 'Luddite'.😔 Quote Red ochre Plugin pack.............. Diabolical Drawings ................Real Paintings
ReMake Posted August 18 Posted August 18 4 hours ago, Red ochre said: Hi @ReMake - Did you manage to build this with code lab?... I couldn't! No, I didn't try to compile the effect in CodeLab. I just showed how to fix the errors in lines 60 and 61. Quote
BlitheSatin Posted August 19 Posted August 19 On 8/17/2024 at 5:42 AM, ReMake said: Replace lines 60 and 61 of the script: double translateX = rect.Left + (center.X + 1) / 2 * rect.Width; double translateY = rect.Top + (center.Y + 1) / 2 * rect.Height; What do I do with line 17? Quote
Red ochre Posted August 19 Posted August 19 @BlitheSatin try changing PanSliderControl center = Pair.Create(0.000, 0.000); // Center into PanSliderControl center = new Vector2Double(0.000, 0.000); // Center However I couldn't get it to compile ... perhaps you'll have better luck! Quote Red ochre Plugin pack.............. Diabolical Drawings ................Real Paintings
ReMake Posted August 19 Posted August 19 2 hours ago, Red ochre said: However I couldn't get it to compile ... perhaps you'll have better luck! I was able to compile this effect with paint.net 5.013 and CodeLab 6.12 . 1 Quote
Red ochre Posted August 19 Posted August 19 Aha! I didn't realise I was using an outdated version of codelab 🙄. I can compile now 🙂, many thanks! I hope @BlitheSatin is successful too. 1 Quote Red ochre Plugin pack.............. Diabolical Drawings ................Real Paintings
BlitheSatin Posted August 19 Posted August 19 8 hours ago, Red ochre said: @BlitheSatin try changing PanSliderControl center = Pair.Create(0.000, 0.000); // Center into PanSliderControl center = new Vector2Double(0.000, 0.000); // Center However I couldn't get it to compile ... perhaps you'll have better luck! Thank you! It works better now! 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.