DOCX
JPG
PDF
XML
TIFF
PNG
Converteer TIFF naar PNG via C++
Hoogwaardige TIFF naar PNG-conversie met behulp van de C++-bibliotheek zonder de noodzaak van Microsoft PowerPoint-installatie.
Hoe TIFF naar PNG te converteren met C++
Om TIFF naar PNG te converteren, gebruiken we
API, een veelzijdige, krachtige en gebruiksvriendelijke API voor documentmanipulatie en -conversie voor het C++-platform. Je kunt de nieuwste versie direct downloaden, open gewoon
pakketbeheerder, zoek naar Aspose.Slides.Cpp en installeren. U kunt ook de volgende opdracht gebruiken vanuit de Package Manager Console.
Opdracht
PM> Install-Package Aspose.Slides.Cpp
Stappen om TIFF naar PNG te converteren via C++
C++-ontwikkelaars kunnen TIFF-bestanden gemakkelijk converteren naar PNG in slechts een paar regels code.
- Laad het TIFF-bestand met Aspose.Slides voor C++ Presentation Object.
- Selecteer de eerste dia.
- Stel de gewenste afmetingen in.
- Verkrijg de miniatuur met de gewenste afmetingen.
- Roep de methode Save() aan met de PNG-uitvoerparameter .
- Open het PNG-bestand in een compatibel programma.
systeem vereisten
Voordat u de voorbeeldcode voor C++-conversie uitvoert, moet u ervoor zorgen dat u aan de volgende vereisten voldoet.
- Microsoft Windows of een compatibel besturingssysteem met C++ Runtime Environment voor Windows 32 bit, Windows 64 bit en Linux 64 bit.
- Aspose.Slides voor C++ DLL waarnaar in uw project wordt verwezen.
TIFF naar PNG C++ conversie broncode
// Load the TIFF
SharedPtr<Presentation> pres = MakeObject<Presentation>(u"sourceFile.tiff");
// Access the first slide
SharedPtr<ISlide> slide = pres->get_Slides()->idx_get(0);
// User defined dimension
int desiredX = 1200;
int desiredY = 800;
// Getting scaled value of X and Y
float ScaleX = (float)(1.0 / pres->get_SlideSize()->get_Size().get_Width()) * desiredX;
float ScaleY = (float)(1.0 / pres->get_SlideSize()->get_Size().get_Height()) * desiredY;
// Create a custom scale image
auto bitmap = slide->GetThumbnail(ScaleX, ScaleY);
bitmap->Save(u"output.png", ImageFormat::get_Png());
//Iterate through each slide via index and convert
Gratis app om TIFF te converteren naar PNG
Andere ondersteunde conversies
U kunt TIFF ook converteren naar vele andere bestandsindelingen, waaronder enkele die hieronder worden vermeld.
TIFF TO BMP (Bitmap afbeelding)
TIFF TO EMF (Verbeterde metabestandsindeling)
TIFF TO GIF (Grafisch uitwisselingsformaat)
TIFF TO HTML (Hypertekst-opmaaktaal)
TIFF TO JPEG (JPEG-afbeelding)
TIFF TO ODP (OpenDocument-presentatie-indeling)
TIFF TO OTP (Standaardformaat OpenDocument)
TIFF TO PDF (Draagbaar documentformaat)
TIFF TO POT (Microsoft PowerPoint-sjabloonbestanden)
TIFF TO POTM (Microsoft PowerPoint-sjabloonbestand)
TIFF TO POTX (Microsoft PowerPoint-sjabloonpresentatie)
TIFF TO PPS (PowerPoint-diavoorstelling)
TIFF TO PPSM (Diavoorstelling met macro's)
TIFF TO PPSX (PowerPoint-diavoorstelling)
TIFF TO PPT (Microsoft PowerPoint 97-2003)
TIFF TO PPTM (Presentatiebestand met macro's)
TIFF TO PPTX (Open XML-presentatie-indeling)
TIFF TO SVG (Schaalbare vectorafbeeldingen)
TIFF TO XML (Uitbreidbare opmaaktaal)
TIFF TO XPS (XML-papierspecificaties)