Click here to Skip to main content
15,885,546 members
Home / Discussions / C#
   

C#

 
QuestionSending emails Pin
Mohammad Imran Ahmed4-Dec-15 1:29
professionalMohammad Imran Ahmed4-Dec-15 1:29 
AnswerRe: Sending emails Pin
Eddy Vluggen4-Dec-15 1:57
professionalEddy Vluggen4-Dec-15 1:57 
AnswerRe: Sending emails Pin
CHill604-Dec-15 2:16
mveCHill604-Dec-15 2:16 
AnswerRe: Sending emails Pin
Afzaal Ahmad Zeeshan4-Dec-15 3:16
professionalAfzaal Ahmad Zeeshan4-Dec-15 3:16 
QuestionSMS Generation Pin
Mohammad Imran Ahmed4-Dec-15 1:27
professionalMohammad Imran Ahmed4-Dec-15 1:27 
AnswerRe: SMS Generation Pin
Richard MacCutchan4-Dec-15 2:01
mveRichard MacCutchan4-Dec-15 2:01 
AnswerRe: SMS Generation Pin
CHill604-Dec-15 2:18
mveCHill604-Dec-15 2:18 
QuestionABCPDF library and using dll Pin
Mol4ok3-Dec-15 23:48
Mol4ok3-Dec-15 23:48 
Hi!

I have one question with working ABCPDF library.

I manually instaled ABCpdf.dll and used on my site.

I copied this dll to my bin folder in project from trial version programm, that was downloaded from http://www.websupergoo.com/download.htm and installed on my computer(i copied ABCpdf.dll, ABCpdf10-32.dll from folder C:\Program Files\WebSupergoo\ABCpdf .NET 10.1 after i have installed it on my computer)

I had to conver pdf file inti tiff, and used this library this way
C#
Doc theDoc = new Doc();

       theDoc.Read("C:\\pdf\\" + sec_part + ".pdf");

       theDoc.Rendering.ColorSpace = XRendering.ColorSpaceType.Rgb;

       theDoc.Rendering.BitsPerChannel = 2;

       theDoc.Rendering.DotsPerInchX = 200;

       theDoc.Rendering.DotsPerInchY = 400;


       int n = theDoc.PageCount;

       for (int i = 1; i <= 1; i++)
       {

           theDoc.PageNumber = i;

           theDoc.Rect.String = theDoc.CropBox.String;

           theDoc.Rendering.SaveAppend = (i != 1);

           //theDoc.Rendering.SaveCompression = XRendering.Compression.G4;

           theDoc.SetInfo(0, "ImageCompression", "0");

           theDoc.Rendering.Save("C:\\pdf\\" + sec_part+".tiff");

       }

      theDoc.Clear();


it works fine, but...

Is it right? In one month won't the license end and my program stop work?

I really worry about it...
AnswerRe: ABCPDF library and using dll Pin
OriginalGriff4-Dec-15 0:06
mveOriginalGriff4-Dec-15 0:06 
GeneralRe: ABCPDF library and using dll Pin
Member 1198551412-Mar-18 1:29
Member 1198551412-Mar-18 1:29 
GeneralRe: ABCPDF library and using dll Pin
OriginalGriff12-Mar-18 1:38
mveOriginalGriff12-Mar-18 1:38 
QuestionHow to make a list that contain lists which contain lists Pin
kmkmahesh3-Dec-15 20:53
professionalkmkmahesh3-Dec-15 20:53 
AnswerRe: How to make a list that contain lists which contain lists Pin
OriginalGriff3-Dec-15 21:34
mveOriginalGriff3-Dec-15 21:34 
AnswerRe: How to make a list that contain lists which contain lists Pin
Pete O'Hanlon3-Dec-15 21:37
mvePete O'Hanlon3-Dec-15 21:37 
AnswerRe: How to make a list that contain lists which contain lists Pin
LeHuuTien3-Dec-15 22:15
LeHuuTien3-Dec-15 22:15 
AnswerRe: How to make a list that contain lists which contain lists Pin
BillWoodruff4-Dec-15 4:04
professionalBillWoodruff4-Dec-15 4:04 
QuestionProblem with Event Pin
Member 121764283-Dec-15 10:19
Member 121764283-Dec-15 10:19 
AnswerRe: Problem with Event Pin
Matt T Heffron3-Dec-15 11:09
professionalMatt T Heffron3-Dec-15 11:09 
AnswerRe: Problem with Event Pin
Mycroft Holmes3-Dec-15 12:07
professionalMycroft Holmes3-Dec-15 12:07 
Questionwcf with net msmq binding Pin
Member 106619973-Dec-15 2:21
Member 106619973-Dec-15 2:21 
SuggestionRe: wcf with net msmq binding Pin
Richard MacCutchan3-Dec-15 3:51
mveRichard MacCutchan3-Dec-15 3:51 
QuestionWindows Service with multitple jobs in c# Pin
Member 109327092-Dec-15 12:02
Member 109327092-Dec-15 12:02 
AnswerRe: Windows Service with multitple jobs in c# Pin
Dave Kreskowiak2-Dec-15 12:33
mveDave Kreskowiak2-Dec-15 12:33 
QuestionHandle transaction without deadlock Pin
Member 106619971-Dec-15 4:25
Member 106619971-Dec-15 4:25 
AnswerRe: Handle transaction without deadlock Pin
Eddy Vluggen1-Dec-15 4:55
professionalEddy Vluggen1-Dec-15 4:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.