Jump to content
How to Install Plugins ×

Arc Text (May 13, 2022)


VeLC

Recommended Posts

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
Link to comment
Share on other sites

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

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();

 

Link to comment
Share on other sites

  • VeLC changed the title to Arc Text (Apr 21, 2022)
  • VeLC changed the title to Arc Text (Apr 28, 2022)
  • VeLC changed the title to Arc Text (May 6, 2022)
  • VeLC changed the title to Arc Text (May 13, 2022)
  • 1 month later...
  • 1 year later...

@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

Link to comment
Share on other sites

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.

 
Link to comment
Share on other sites

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;

 

Link to comment
Share on other sites

  • 4 weeks later...

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.

 
Link to comment
Share on other sites

  • 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...