Guest User

Untitled

a guest
Aug 19th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. How can I pass TIFF image data to JUCE (which does not support TIFF)?
  2. class MyTiffFormat : public ImageFileFormat
  3. {
  4. private:
  5. MyTiffFormat( const MyTiffFormat& );
  6. MyTiffFormat& operator=( const MyTiffFormat& );
  7.  
  8. public:
  9. MyTiffFormat();
  10. ~MyTiffformat();
  11.  
  12. const String getFormatName();
  13. bool canUnderStand();
  14. Image decodeImage( InputStream& input );
  15. bool writeImageToStream( const Image& source, OuptputStream& dest );
  16.  
  17. };
Add Comment
Please, Sign In to add comment