Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Profolio  
#1 Posted : Wednesday, October 10, 2012 12:16:21 AM(UTC)
Profolio

Rank: Member

Groups: Member
Joined: 7/9/2008(UTC)
Posts: 20

Hello,
is there a way to apply an effect like "Sharpen" on my image with aurigma ?

i've seen this doc
http://www.aurigma.com/d.../gm/SharpeningImages.htm

but i don't know how to implement that in php

my code is
Code:


    // Create Image Uploader 
    $uploader = new Uploader('Uploader1'); 
    $uploader->setHeight('650px'); 
    $uploader->setWidth('90%'); 
	$uploader->setLanguage("fr");
	 
	$uploader->getClientEvents()->setAfterUpload("afterupload");
	
	 $uploader->getFolderPane()->setViewMode("Tiles");
	 
	 $uploader->getRestrictions()->setFileMask("*.jpg;*.jpeg;*.png;*.gif;*.bmp");
 
	if (trim(AURIGMA_KEY) != '') {
     $uploader->setLicenseKey(AURIGMA_KEY); 
	 }
    
                  
   // $uploader->getUploadSettings()->setActionUrl('upload.php');
    
     
    $uploader->getUploadSettings()->setFilesPerPackage('1');

 
    // Configure converters 
    //Main converter
	
	if ($_SESSION['user']->impressionDeportee == 1) {
	
		$converter0 = new Converter();
		$converter0->setMode('*.*=SourceFile');
		$arrconverters[] = $converter0 ;
	}
				
	//thumb
	$converter1 = new Converter();
	$converter1->setMode('*.*=Thumbnail');
	$converter1->setThumbnailWidth(150);
	$converter1->setThumbnailHeight(150);
	$converter1->setThumbnailFitMode("Fit");
    $converter1->setThumbnailApplyCrop(true);
	
	$arrconverters[] = $converter1 ;

...


please could you give me an example to apply this filter :)

thank's

p.shirykalova  
#2 Posted : Wednesday, October 10, 2012 12:21:05 AM(UTC)
p.shirykalova

Rank: Advanced Member

Groups:
Joined: 7/13/2011(UTC)
Posts: 286

Thanks: 6 times
Was thanked: 31 time(s) in 31 post(s)
Hi Rey,

The documentation you read is for another product Graphics Mill.
Graphics Mill is powerful imaging SDK, please learn more about it on our site.

Upload Suite doesn't support allying any effects to the uploaded images.
Best regards,
Pauline Shirykalova
Aurigma Technical Support
Profolio  
#3 Posted : Friday, October 12, 2012 7:26:46 AM(UTC)
Profolio

Rank: Member

Groups: Member
Joined: 7/9/2008(UTC)
Posts: 20

ok thank's,
i'v found another way
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.