Tagged Questions
5
votes
8answers
1k views
How to find the most common int in a 2d array of ints?
OK, so I'm just starting to think how to implement a new graphical plugin for Paint.NET and I will need to know how to find the most common integer in a 2d array of integers. Is there a built-in to ...
2
votes
2answers
327 views
Can Paint.NET plug-ins be used outside of Paint.NET?
Can I easily use plug-ins made for Paint.NET in my own C# application (assuming that I comply with the plug-in licensing)?
My goal is to automate certain effects and it seems that there are quite a ...
1
vote
4answers
989 views
Can i use Paint.NET API to embedd it in Winforms application?
I'm trying to let the use crop a selected area from picture in my winforms application and thought to embed the Paint.NET and limit its functions. I understand that Paint.NET API is unavailable..
I'll ...
0
votes
0answers
35 views
How to save psd layers in png using PSD-plugin for Paint.NET?
How to save psd layers in png using PSD-plugin for Paint.NET?
Trying to do this way:
System.Drawing.Image img;
var stream = new System.IO.MemoryStream();
var BRW = new ...
0
votes
1answer
184 views
Paint.net filetype plugins
Can't find any info on how to write a filetype plugin for Paint.net. I have found only visual studio template at ...