Jump to content
How to Install Plugins ×

Recommended Posts

Posted (edited)

Thanks! Question though. I see that in your ArcText.zip file the velc.ArcText.dll has file size 15872 and the install batch file has size 2842.

 

I copied your code and placed in CodeLab and built the effect to ArcText.zip (on my desktop) and see the file sizes have changed to ArcText.dll == 15360 and the install batch file to 2832.

 

Is there any reason? Is it due to .NET call differences? (version 6.0.3)??

 

Just asking. Works though. 👍

 

edit: figured the batch file sizes (velc.)

Edited by Panchdara
Posted
11 hours ago, Panchdara said:

I copied your code and placed in CodeLab and built the effect to ArcText.zip (on my desktop) and see the file sizes have changed to ArcText.dll == 15360

 

Probably the lack of window icon causes a smaller file.

  • VeLC changed the title to Arc Text (Apr 20, 2022)
Posted

If Repeat>1 the text disappears.

I used another variable (txt) to make it work. (CodeLab v6.1)

 

StringBuilder sb = new StringBuilder(text);
    for (int i = 2; i <= repeat; ++i)
    {
        sb.Append(text);
    }
string txt = sb.ToString();

 

  • VeLC changed the title to Arc Text (Apr 21, 2022)
Posted

Version 1.2 - Update code to make it compatible with CodeLab v6.1 (and below?). Also, detects if user canceled.

  • Like 1
  • Upvote 1
  • You're a Smart Cookie! 1
  • VeLC changed the title to Arc Text (Apr 28, 2022)
  • VeLC changed the title to Arc Text (May 6, 2022)
Posted

Version 1.4 - Fix space character not rendering when Character Spacing is zero and slightly shorter UI

  • Like 3
  • VeLC changed the title to Arc Text (May 13, 2022)
  • 1 month later...
  • 1 year later...
Posted

This is great for a top rocker, but what about a bottom rocker where the ends are curved up? I want to do two lines of text; one on the top curved down and one on the bottom curved up. Is there a plugin for that?

Posted

@Pixey Do you see what you did? Pointing to yourself?

Codelab now rejects the posted CS script with 4 errors. Could someone take the time to correct it please? I did half.

     double translateX = rect.Left + (center.First + 1) / 2 * rect.Width;
     double translateY = rect.Top + (center.Second + 1) / 2 * rect.Height;

These posted scripts are valuable lessons to demonstrate plugin development.

PaintNetSignature.png.6bca4e07f5d738b2436f83d0ce1b876f.png

Posted
37 minutes ago, AndrewDavid said:

Do you see what you did? Pointing to yourself?

 

😁 Silly me - I was jumping between posts and didn't notice 😂

30b8T8B.gif

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.

 
Posted

I needed to change three lines (with the help of the following update thread.

PanSliderControl center = new Vector2Double(0.000, 0.000); // Center
        double translateX = rect.Left + (center.X + 1) / 2 * rect.Width;
        double translateY = rect.Top + (center.Y + 1) / 2 * rect.Height;

 

Posted

Thank you @Zin

Although the corrections now allow compiling in codelab, The Pan Slider Control does not function when the plugin is run. The good news is the ops DLL still works.

I am running Codelab 6.9 and the thread link led me to believe this issue was resolved.

PaintNetSignature.png.6bca4e07f5d738b2436f83d0ce1b876f.png

  • 4 weeks later...
Posted

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.

Posted

Hello @Tabatha an welcome to PDN :) 

I just checked the download and it is downloading alright.  Please check your download file on your computer.

It sounds like you have the Store Bought version of paint.net, so the Plugins are stored (after unzipping) in a new folder that you must generate.

 

Please read halfway down this page:  https://www.getpaint.net/doc/latest/InstallPlugins.html

  • Like 1

30b8T8B.gif

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.

 
  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...